--- old/jdk/src/java.base/share/classes/java/lang/Integer.java Wed Jan 6 14:53:52 2016 +++ new/jdk/src/java.base/share/classes/java/lang/Integer.java Wed Jan 6 14:53:52 2016 @@ -716,7 +716,7 @@ * {@code radix}, or if {@code radix} is either smaller than * {@link java.lang.Character#MIN_RADIX} or larger than * {@link java.lang.Character#MAX_RADIX}. - * @since 1.9 + * @since 9 */ public static int parseInt(CharSequence s, int beginIndex, int endIndex, int radix) throws NumberFormatException { @@ -899,7 +899,7 @@ * {@code radix}, or if {@code radix} is either smaller than * {@link java.lang.Character#MIN_RADIX} or larger than * {@link java.lang.Character#MAX_RADIX}. - * @since 1.9 + * @since 9 */ public static int parseUnsignedInt(CharSequence s, int beginIndex, int endIndex, int radix) throws NumberFormatException { @@ -1019,7 +1019,7 @@ * may be controlled by the {@code -XX:AutoBoxCacheMax=} option. * During VM initialization, java.lang.Integer.IntegerCache.high property * may be set and saved in the private system properties in the - * jdk.internal.misc.VM class. + * sun.misc.VM class. */ private static class IntegerCache { @@ -1031,7 +1031,7 @@ // high value may be configured by property int h = 127; String integerCacheHighPropValue = - VM.getSavedProperty("java.lang.Integer.IntegerCache.high"); + sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high"); if (integerCacheHighPropValue != null) { try { int i = parseInt(integerCacheHighPropValue);