< prev index next >

test/hotspot/jtreg/runtime/Nestmates/privateMethods/TestReflection.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 core reflection
  * @run main TestReflection
  * @run main/othervm -Dsun.reflect.noInflation=true TestReflection
  */
 

@@ -35,11 +35,11 @@
 // The second run disables inflation so we will use the GeneratedMethodAccessor
 // instead. In this way both sets of Reflection classes are tested.
 
 public class TestReflection {
 
-    // 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("TestReflection::priv_invoke");
     }
 
     // public constructor so we aren't relying on private access
< prev index next >