--- old/src/java.base/share/classes/sun/text/normalizer/NormalizerImpl.java 2018-09-28 11:30:57.433908797 +0700 +++ new/src/java.base/share/classes/sun/text/normalizer/NormalizerImpl.java 2018-09-28 11:30:57.037908797 +0700 @@ -349,7 +349,7 @@ public NormalizerImpl() {} private static final class IsAcceptable implements ICUBinary.Authenticate { - public boolean isDataVersionAcceptable(byte version[]) { + public boolean isDataVersionAcceptable(byte[] version) { return version[0]==3; } } @@ -1758,7 +1758,7 @@ * Get the canonical decomposition * sherman for ComposedCharIter */ - public static int getDecompose(int chars[], String decomps[]) { + public static int getDecompose(int[] chars, String[] decomps) { Normalizer2 impl = Normalizer2.getNFDInstance(); int length=0;