Commit 5250fb12 authored by Stephane Nicoll's avatar Stephane Nicoll

Fix broken condition

See gh-6041
parent f9288a3a
...@@ -251,7 +251,7 @@ public class JettyEmbeddedServletContainerFactory ...@@ -251,7 +251,7 @@ public class JettyEmbeddedServletContainerFactory
configureSslClientAuth(factory, ssl); configureSslClientAuth(factory, ssl);
configureSslPasswords(factory, ssl); configureSslPasswords(factory, ssl);
factory.setCertAlias(ssl.getKeyAlias()); factory.setCertAlias(ssl.getKeyAlias());
if (!ObjectUtils.isEmpty(ssl.getCiphers() != null)) { if (!ObjectUtils.isEmpty(ssl.getCiphers())) {
factory.setIncludeCipherSuites(ssl.getCiphers()); factory.setIncludeCipherSuites(ssl.getCiphers());
factory.setExcludeCipherSuites(); factory.setExcludeCipherSuites();
} }
......
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