cache: fix framemap dumper file names

This commit is contained in:
Adam
2017-05-21 00:34:11 -04:00
parent 48bbb11ac4
commit 3cd86bbbc4

View File

@@ -71,7 +71,7 @@ public class FramemapDumper
FramemapLoader loader = new FramemapLoader();
FramemapDefinition framemap = loader.load(file.getFileId(), file.getContents());
Files.write(gson.toJson(framemap), new java.io.File(outDir, file.getFileId() + ".json"), Charset.defaultCharset());
Files.write(gson.toJson(framemap), new java.io.File(outDir, archive.getArchiveId() + ".json"), Charset.defaultCharset());
++count;
}
}