Fix broken condition

See gh-6041
pull/6100/merge
Stephane Nicoll 9 years ago
parent f9288a3af1
commit 5250fb127a

@ -251,7 +251,7 @@ public class JettyEmbeddedServletContainerFactory
configureSslClientAuth(factory, ssl);
configureSslPasswords(factory, ssl);
factory.setCertAlias(ssl.getKeyAlias());
if (!ObjectUtils.isEmpty(ssl.getCiphers() != null)) {
if (!ObjectUtils.isEmpty(ssl.getCiphers())) {
factory.setIncludeCipherSuites(ssl.getCiphers());
factory.setExcludeCipherSuites();
}

Loading…
Cancel
Save