Merge pull request #14213 from dreis2211:collapse-identical-catch-blocks

* pr/14213:
  Collapse identical catch blocks
pull/14268/head
Stephane Nicoll 6 years ago
commit 352a6671e8

@ -84,10 +84,7 @@ class SslBuilderCustomizer implements UndertowBuilderCustomizer {
Sequence.of(this.ssl.getCiphers()));
}
}
catch (NoSuchAlgorithmException ex) {
throw new IllegalStateException(ex);
}
catch (KeyManagementException ex) {
catch (NoSuchAlgorithmException | KeyManagementException ex) {
throw new IllegalStateException(ex);
}
}

Loading…
Cancel
Save