Author: markt
Date: Fri Sep 8 13:05:57 2017
New Revision: 1807751
URL: http://svn.apache.org/viewvc?rev=1807751&view=rev
Log:
Fix IDE nag
Modified:
tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java
Modified:
tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java?rev=1807751&r1=1807750&r2=1807751&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java
(original)
+++ tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java
Fri Sep 8 13:05:57 2017
@@ -69,7 +69,7 @@ public class TestOpenSSLConf extends Tom
String[] ciphers = sslHostConfig.getEnabledCiphers();
assertEquals("Checking enabled cipher count", 1, ciphers.length);
assertEquals("Checking enabled cipher", CIPHER, ciphers[0]);
- ciphers = SSLContext.getCiphers(sslHostConfig.getOpenSslContext());
+ ciphers =
SSLContext.getCiphers(sslHostConfig.getOpenSslContext().longValue());
assertEquals("Checking context cipher count", 1, ciphers.length);
assertEquals("Checking context cipher", CIPHER, ciphers[0]);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]