Commit 20c8f614 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '2.0.x'

parents e1ebbcd7 352a6671
......@@ -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