Cleanup
This commit is contained in:
parent
ff57ff172e
commit
cb2bbbf801
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user