cache: lombok definitions

This commit is contained in:
Adam
2017-12-28 21:03:44 -05:00
parent e9e7e2a180
commit 0cebc5ebe8
28 changed files with 185 additions and 975 deletions

View File

@@ -75,9 +75,9 @@ public class InventoryDumper
for (FSFile file : files.getFiles())
{
InventoryLoader loader = new InventoryLoader();
InventoryDefinition inv = loader.load(file.getContents());
InventoryDefinition inv = loader.load(file.getFileId(), file.getContents());
Files.write(gson.toJson(inv), new File(outDir, file.getFileId() + ".json"), Charset.defaultCharset());
Files.write(gson.toJson(inv), new File(outDir, inv.id + ".json"), Charset.defaultCharset());
++count;
}
}

View File

@@ -1 +1 @@
org.slf4j.simpleLogger.defaultLogLevel=info
org.slf4j.simpleLogger.defaultLogLevel=INFO