< prev index next >

test/hotspot/jtreg/runtime/Nestmates/privateMethods/TestMethodHandles.java

Print this page

        

@@ -22,11 +22,11 @@
  */
 
 /*
  * @test
  * @bug 8046171
- * @summary Test access to private methods between nestmates and nest-top
+ * @summary Test access to private methods between nestmates and nest-host
  *          using different flavours of named nested types using MethodHandles
  * @run main TestMethodHandles
  */
 
 

@@ -36,11 +36,11 @@
 
 public class TestMethodHandles {
 
     static final MethodType M_T = MethodType.methodType(void.class);
 
-    // Private method of nest-top for nestmates to access
+    // Private method of nest-host for nestmates to access
     private void priv_invoke() {
         System.out.println("TestMethodHandles::priv_invoke");
     }
 
     // public constructor so we aren't relying on private access
< prev index next >