--- old/jdk/src/java.base/share/classes/jdk/internal/misc/Unsafe.java Wed Jan 6 14:54:34 2016 +++ new/jdk/src/java.base/share/classes/jdk/internal/misc/Unsafe.java Wed Jan 6 14:54:34 2016 @@ -30,7 +30,7 @@ import sun.reflect.CallerSensitive; import sun.reflect.Reflection; -import jdk.internal.misc.VM; +import sun.misc.VM; import jdk.internal.HotSpotIntrinsicCandidate; @@ -1081,7 +1081,7 @@ * @return the value fetched from the indicated object * @throws RuntimeException No defined exceptions are thrown, not even * {@link NullPointerException} - * @since 1.9 + * @since 9 */ @HotSpotIntrinsicCandidate public final long getLongUnaligned(Object o, long offset) { @@ -1115,7 +1115,7 @@ * @param offset The offset in bytes from the start of the object * @param bigEndian The endianness of the value * @return the value fetched from the indicated object - * @since 1.9 + * @since 9 */ public final long getLongUnaligned(Object o, long offset, boolean bigEndian) { return convEndian(bigEndian, getLongUnaligned(o, offset)); @@ -1193,7 +1193,7 @@ * @param x the value to store * @throws RuntimeException No defined exceptions are thrown, not even * {@link NullPointerException} - * @since 1.9 + * @since 9 */ @HotSpotIntrinsicCandidate public final void putLongUnaligned(Object o, long offset, long x) { @@ -1231,7 +1231,7 @@ * @param bigEndian The endianness of the value * @throws RuntimeException No defined exceptions are thrown, not even * {@link NullPointerException} - * @since 1.9 + * @since 9 */ public final void putLongUnaligned(Object o, long offset, long x, boolean bigEndian) { putLongUnaligned(o, offset, convEndian(bigEndian, x));