< prev index next >

test/tools/jdeps/modules/src/mV/module-info.java

Print this page

        

@@ -19,21 +19,21 @@
  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
 
-module m5 {
-    // m4 requires transitive java.compiler
-    requires transitive m4;
+module mV {
+    // mIV requires transitive java.compiler
+    requires transitive mIV;
     requires transitive java.compiler;
 
     // java.sql should be requires transitive
     requires java.sql;
 
     // java.logging is used for implementation only
     requires transitive java.logging;
 
     exports p5;
 
-    // m8 is not in the resolved graph but used by m8
-    exports p5.internal to m8;
+    // m8 is not in the resolved graph but used by mVIII
+    exports p5.internal to mVIII;
 }
< prev index next >