X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=getdown%2Fsrc%2Fgetdown%2Fcore%2Fsrc%2Fmain%2Fjava%2Fcom%2Fthreerings%2Fgetdown%2Futil%2FConfig.java;fp=getdown%2Fsrc%2Fgetdown%2Fcore%2Fsrc%2Fmain%2Fjava%2Fcom%2Fthreerings%2Fgetdown%2Futil%2FConfig.java;h=8767ae034fc4e12ba9636a3deb2568a6dd3d105f;hb=6a05eb3f55d97e685f0c723822384633d5636778;hp=e20bae2f52d322986a01315030ed5c90aa396e9a;hpb=d113749a183a3ea8f3f7e22c725511f59f1d833f;p=jalview.git diff --git a/getdown/src/getdown/core/src/main/java/com/threerings/getdown/util/Config.java b/getdown/src/getdown/core/src/main/java/com/threerings/getdown/util/Config.java index e20bae2..8767ae0 100644 --- a/getdown/src/getdown/core/src/main/java/com/threerings/getdown/util/Config.java +++ b/getdown/src/getdown/core/src/main/java/com/threerings/getdown/util/Config.java @@ -436,8 +436,8 @@ public class Config } else if (allowedReplaceKeys.contains(mkey)){ // replace value - _data.put(key, nvalue); + } else { log.warning("Not merging key '"+key+"' into config"); } @@ -471,7 +471,7 @@ public class Config private final Map _data; - public static final List allowedReplaceKeys = Arrays.asList("appbase","apparg","jvmarg"); // these are the ones we might use + public static final List allowedReplaceKeys = Arrays.asList("appbase","apparg","jvmarg","jvmmempc"); // these are the ones we might use public static final List allowedMergeKeys = Arrays.asList("apparg","jvmarg"); // these are the ones we might use //private final List allowedMergeKeys = Arrays.asList("apparg","jvmarg","resource","code","java_location"); // (not exhaustive list here) }