Commit 352a6671 authored by Stephane Nicoll's avatar Stephane Nicoll

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

* pr/14213:
  Collapse identical catch blocks
parents af426e38 70add061
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment