hotspot/test/runtime/ErrorHandling/ProblematicFrameTest.java
changeset 41092 c388d897472d
parent 40855 3c4c913195e3
child 43467 f91da24c6bca
--- a/hotspot/test/runtime/ErrorHandling/ProblematicFrameTest.java	Tue Sep 13 21:29:30 2016 +0000
+++ b/hotspot/test/runtime/ErrorHandling/ProblematicFrameTest.java	Wed Sep 14 08:17:50 2016 -0400
@@ -35,14 +35,13 @@
 
 import jdk.test.lib.process.ProcessTools;
 import jdk.test.lib.process.OutputAnalyzer;
-import jdk.test.lib.unsafe.UnsafeHelper;
 
 import jdk.internal.misc.Unsafe;
 
 public class ProblematicFrameTest {
     private static class Crasher {
         public static void main(String[] args) {
-            UnsafeHelper.getUnsafe().getInt(0);
+            Unsafe.getUnsafe().getInt(0);
         }
     }