Review Request JDK-8136930 Examine implications for custom launchers, equivalent of java -X options in particular
Mandy Chung
mandy.chung at oracle.com
Wed Jun 8 23:42:04 UTC 2016
> On Jun 8, 2016, at 3:37 PM, Coleen Phillimore <coleen.phillimore at oracle.com> wrote:
>
> http://cr.openjdk.java.net/~mchung/jdk9/webrevs/8136930/webrev.01/jdk/src/java.base/share/classes/jdk/internal/module/ModuleBootstrap.java.udiff.html
>
> + /**
> + * Gets and remove the named system property
> + */
> + private static String getAndRemoveProperty(String key) {
> + return (String)System.getProperties().remove(key);
> + }
> There are two of these. Should there be only one in the System class?
This is private. If it’s moved to System, it would need a shared secret to access it that is overkill for this simple call.
Mandy
More information about the jigsaw-dev
mailing list