< prev index next >

test/runtime/Unsafe/NestedUnsafe.java

Print this page

        

@@ -33,11 +33,10 @@
 
 import java.security.ProtectionDomain;
 import java.io.InputStream;
 import java.lang.*;
 import jdk.test.lib.InMemoryJavaCompiler;
-import jdk.test.lib.unsafe.UnsafeHelper;
 import jdk.internal.misc.Unsafe;
 import static jdk.test.lib.Asserts.*;
 
 // package p;
 

@@ -48,11 +47,11 @@
         "    public static void concat(String one, String two) throws Throwable { " +
         "        System.out.println(one + two);" +
         " } } ");
 
     public static void main(String args[]) throws Exception {
-        Unsafe unsafe = UnsafeHelper.getUnsafe();
+        Unsafe unsafe = Unsafe.getUnsafe();
 
         Class klass = unsafe.defineAnonymousClass(NestedUnsafe.class, klassbuf, new Object[0]);
         unsafe.ensureClassInitialized(klass);
         Class[] cArgs = new Class[2];
         cArgs[0] = String.class;
< prev index next >