Hi all, hi Jon,
i'm currently writing the ASM code for processing of the module-info.class and 
i've found that the output of javap shallow the 'public' when a required module 
is declared as public.

By example, with the module-info.java
 module foo {
   export public java.sql;
 } 

calling javap on the module-info.class output
 module foo {
   export java.sql;
 } 

regards,
Rémi

Reply via email to