This commit is contained in:
Antonin Delpeuch 2018-11-05 17:03:28 +00:00
parent ff57ff172e
commit cb2bbbf801

View File

@ -123,7 +123,6 @@ public class PreferenceStore {
Iterator<String> i = entries.fieldNames(); Iterator<String> i = entries.fieldNames();
while (i.hasNext()) { while (i.hasNext()) {
String key = i.next(); String key = i.next();
System.out.println(key);
if (entries.get(key) != null) { if (entries.get(key) != null) {
JsonNode o = entries.get(key); JsonNode o = entries.get(key);
Object loaded = loadObject(o); Object loaded = loadObject(o);
@ -140,8 +139,6 @@ public class PreferenceStore {
} }
static public Object loadObject(JsonNode o) { static public Object loadObject(JsonNode o) {
System.out.println("loading");
System.out.println(o.toString());
try { try {
if (o instanceof ObjectNode) { if (o instanceof ObjectNode) {
ObjectNode obj2 = (ObjectNode) o; ObjectNode obj2 = (ObjectNode) o;