javap and requires public

Remi Forax forax at univ-mlv.fr
Sun May 29 10:03:59 UTC 2016


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


More information about the jigsaw-dev mailing list