< prev index next >

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

Print this page

        

@@ -22,18 +22,18 @@
  */
 
 /*
  * @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
   * @run main TestInvoke
  */
 
 public class TestInvoke {
 
-    // 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("TestInvoke::priv_invoke");
     }
 
     // public constructor so we aren't relying on private access
< prev index next >