Collapse identical catch blocks
Closes gh-14213
This commit is contained in:
committed by
Stephane Nicoll
parent
af426e383f
commit
70add0617a
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user