--- old/src/java.base/share/classes/sun/text/normalizer/Utility.java 2018-09-28 11:31:15.293908797 +0700 +++ new/src/java.base/share/classes/sun/text/normalizer/Utility.java 2018-09-28 11:31:14.885908797 +0700 @@ -167,7 +167,7 @@ int ahead = offset+1; c = s.charAt(offset); // [sic] get 16-bit code unit if (c == '\\' && ahead < length) { - int o[] = new int[] { ahead }; + int[] o = new int[] { ahead }; c = unescapeAt(s, o); ahead = o[0]; } @@ -223,7 +223,7 @@ return result; } - static final char DIGITS[] = { + static final char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',