collapsed error clause

pull/866/head
Justin Richer 2015-07-08 14:35:45 -04:00
parent 6921ca9a42
commit 3c297ba18f
1 changed files with 1 additions and 4 deletions

View File

@ -85,10 +85,7 @@ public class DynamicRegistrationClientConfigurationService implements ClientConf
}
return clients.get(issuer);
} catch (UncheckedExecutionException ue) {
logger.warn("Unable to get client configuration", ue);
return null;
} catch (ExecutionException e) {
} catch (UncheckedExecutionException | ExecutionException e) {
logger.warn("Unable to get client configuration", e);
return null;
}