--- old/test/runtime/Unsafe/ThrowException.java 2016-09-12 13:57:33.200381786 -0400 +++ new/test/runtime/Unsafe/ThrowException.java 2016-09-12 13:57:32.602350122 -0400 @@ -30,13 +30,12 @@ * @run main ThrowException */ -import jdk.test.lib.unsafe.UnsafeHelper; import jdk.internal.misc.Unsafe; import static jdk.test.lib.Asserts.*; public class ThrowException { public static void main(String args[]) throws Exception { - Unsafe unsafe = UnsafeHelper.getUnsafe(); + Unsafe unsafe = Unsafe.getUnsafe(); try { unsafe.throwException(new TestException()); } catch (Throwable t) {