8178380: Module system implementation refresh (5/2017 update)

Mandy Chung mandy.chung at oracle.com
Thu May 4 02:08:21 UTC 2017


> On May 1, 2017, at 1:28 PM, Alan Bateman <alan.bateman at oracle.com> wrote:
> 
>    http://cr.openjdk.java.net/~alanb/8178380/2/

I reviewed all repos in the new version.

src/java.base/share/classes/jdk/internal/module/ModuleBootstrap.java

 148         if (System.getProperty("jdk.module.minimumBoot") != null) {
This property can be removed after read the value, if present.

 287         if (propValue != null && Boolean.getBoolean(propValue))

It should use Boolean.parseBoolean.

I have fixed the above injake and also added a new test to verify 
-—show-module-resolution option.

Otherwise, all looks good.
Mandy


More information about the hotspot-runtime-dev mailing list