Fix broken condition

See gh-6041
This commit is contained in:
Stephane Nicoll
2016-06-10 17:39:23 +02:00
parent f9288a3af1
commit 5250fb127a

View File

@@ -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();
}