--- old/src/java.base/share/classes/sun/security/ssl/SSLCipher.java 2018-09-28 11:30:42.737908797 +0700 +++ new/src/java.base/share/classes/sun/security/ssl/SSLCipher.java 2018-09-28 11:30:42.337908797 +0700 @@ -409,7 +409,7 @@ private static final HashMap cipherLimits = new HashMap<>(); // Keywords found on the jdk.tls.keyLimits security property. - final static String tag[] = {"KEYUPDATE"}; + final static String[] tag = {"KEYUPDATE"}; static { final long max = 4611686018427387904L; // 2^62 @@ -422,12 +422,12 @@ }); if (prop != null) { - String propvalue[] = prop.split(","); + String[] propvalue = prop.split(","); for (String entry : propvalue) { int index; // If this is not a UsageLimit, goto to next entry. - String values[] = entry.trim().toUpperCase().split(" "); + String[] values = entry.trim().toUpperCase().split(" "); if (values[1].contains(tag[0])) { index = 0;