< prev index next >

src/java.base/share/classes/sun/text/normalizer/VersionInfo.java

Print this page

        

*** 62,72 **** * @stable ICU 2.6 */ public static VersionInfo getInstance(String version) { int length = version.length(); ! int array[] = {0, 0, 0, 0}; int count = 0; int index = 0; while (count < 4 && index < length) { char c = version.charAt(index); --- 62,72 ---- * @stable ICU 2.6 */ public static VersionInfo getInstance(String version) { int length = version.length(); ! int[] array = {0, 0, 0, 0}; int count = 0; int index = 0; while (count < 4 && index < length) { char c = version.charAt(index);
< prev index next >