Skip to content

Commit b06a965

Browse files
committed
no need to keep around the Ciphers list
1 parent 4e93b0f commit b06a965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jruby/ext/openssl/CipherStrings.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ private static Collection<Def> matchingPattern(
577577
}
578578

579579
private final static Map<String, Def> Definitions;
580-
private final static ArrayList<Def> Ciphers;
580+
//private final static ArrayList<Def> Ciphers;
581581
private final static Map<String, Def> CipherNames;
582582
private final static Map<String, String> SuiteToOSSL;
583583

@@ -629,7 +629,7 @@ private static Collection<Def> matchingPattern(
629629
Definitions.put(SSL_TXT_MEDIUM,new Def(0,SSL_TXT_MEDIUM,0, 0,SSL_MEDIUM, 0,0,0,0,SSL_STRONG_MASK));
630630
Definitions.put(SSL_TXT_HIGH,new Def(0,SSL_TXT_HIGH, 0, 0, SSL_HIGH, 0,0,0,0,SSL_STRONG_MASK));
631631

632-
Ciphers = new ArrayList<Def>( 96 );
632+
final ArrayList<Def> Ciphers = new ArrayList<Def>( 96 );
633633
/* Cipher 01 */
634634
Ciphers.add(new Def(
635635
1,

0 commit comments

Comments
 (0)