hotspot/test/compiler/unsafe/UnsafeRaw.java
changeset 41092 c388d897472d
parent 40855 3c4c913195e3
--- a/hotspot/test/compiler/unsafe/UnsafeRaw.java	Tue Sep 13 21:29:30 2016 +0000
+++ b/hotspot/test/compiler/unsafe/UnsafeRaw.java	Wed Sep 14 08:17:50 2016 -0400
@@ -35,7 +35,6 @@
 
 import jdk.internal.misc.Unsafe;
 import jdk.test.lib.Utils;
-import jdk.test.lib.unsafe.UnsafeHelper;
 
 import java.util.Random;
 
@@ -82,7 +81,7 @@
   }
 
   public static void main(String[] args) throws Exception {
-    Unsafe unsafe = UnsafeHelper.getUnsafe();
+    Unsafe unsafe = Unsafe.getUnsafe();
     final int array_size = 128;
     final int element_size = 4;
     final int magic = 0x12345678;