File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/main/java/org/jruby/ext/openssl Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -592,8 +592,6 @@ else if ( ciphers instanceof RubyArray ) {
592
592
cipherString = CipherStrings .SSL_DEFAULT_CIPHER_LIST ; // due caching
593
593
}
594
594
595
- System .out .println ("cipherString: " + cipherString + " " + matchedCiphersWithCache (context , cipherString ).isEmpty ());
596
-
597
595
if ( matchedCiphersWithCache (context , cipherString ).isEmpty () ) {
598
596
throw newSSLError (context .runtime , "no cipher match" );
599
597
}
@@ -1135,7 +1133,7 @@ public java.security.cert.X509Certificate[] getCertificateChain(String alias) {
1135
1133
chain = (List ) internalContext .extraChainCert ;
1136
1134
}
1137
1135
else if ( internalContext .cert != null ) {
1138
- chain = new ArrayList <java . security . cert . X509Certificate >(8 );
1136
+ chain = new ArrayList <>(8 );
1139
1137
1140
1138
StoreContext storeCtx = internalContext .createStoreContext (null );
1141
1139
X509AuxCertificate x = internalContext .cert ;
You can’t perform that action at this time.
0 commit comments