--- old/src/java.base/share/classes/sun/text/normalizer/UCharacterProperty.java 2018-09-28 11:31:12.333908797 +0700 +++ new/src/java.base/share/classes/sun/text/normalizer/UCharacterProperty.java 2018-09-28 11:31:11.941908797 +0700 @@ -149,7 +149,7 @@ * Map some of the Grapheme Cluster Break values to Hangul Syllable Types. * Hangul_Syllable_Type is fully redundant with a subset of Grapheme_Cluster_Break. */ - private static final int /* UHangulSyllableType */ gcbToHst[]={ + private static final int[] /* UHangulSyllableType */ gcbToHst={ HangulSyllableType.NOT_APPLICABLE, /* U_GCB_OTHER */ HangulSyllableType.NOT_APPLICABLE, /* U_GCB_CONTROL */ HangulSyllableType.NOT_APPLICABLE, /* U_GCB_CR */ @@ -292,7 +292,7 @@ * Extra property vectors, 1st column for age and second for binary * properties. */ - int m_additionalVectors_[]; + int[] m_additionalVectors_; /** * Number of additional columns */ @@ -563,7 +563,7 @@ private static final class IsAcceptable implements ICUBinary.Authenticate { // @Override when we switch to Java 6 - public boolean isDataVersionAcceptable(byte version[]) { + public boolean isDataVersionAcceptable(byte[] version) { return version[0] == 7; } }