--- old/test/compiler/jvmci/compilerToVM/GetSymbolTest.java 2015-11-02 17:07:13.000000000 -1000 +++ new/test/compiler/jvmci/compilerToVM/GetSymbolTest.java 2015-11-02 17:07:13.000000000 -1000 @@ -52,7 +52,7 @@ import java.util.function.Function; import java.util.stream.Collectors; import java.util.stream.Stream; -import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethodImpl; +import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod; import jdk.vm.ci.meta.ConstantPool; import jdk.test.lib.Utils; @@ -76,7 +76,7 @@ } catch (NoSuchMethodException e) { throw new Error("TEST BUG: can't find test method", e); } - HotSpotResolvedJavaMethodImpl resolvedMethod + HotSpotResolvedJavaMethod resolvedMethod = CTVMUtilities.getResolvedMethod(aClass, method); List symbols; try { @@ -101,7 +101,7 @@ } } - private List getSymbols(HotSpotResolvedJavaMethodImpl + private List getSymbols(HotSpotResolvedJavaMethod metaspaceMethod) throws ReflectiveOperationException { List symbols = new ArrayList<>(); ConstantPool pool = metaspaceMethod.getConstantPool();