On 6/8/16 7:42 PM, Mandy Chung wrote:
On Jun 8, 2016, at 3:37 PM, Coleen Phillimore <coleen.phillim...@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.
Ok.
Coleen
Mandy