mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 21:35:16 +00:00
File cache improvement, deleting old temp files
This commit is contained in:
@@ -278,9 +278,9 @@ public final class SWF implements SWFContainerItem, Timelined {
|
||||
public DumpInfoSwfNode dumpInfo;
|
||||
public DefineBinaryDataTag binaryData;
|
||||
|
||||
private static Cache<String, SerializableImage> frameCache = Cache.getInstance(false);
|
||||
private final Cache<ASMSource, CachedScript> as2Cache = Cache.getInstance(true);
|
||||
private final Cache<ScriptPack, CachedDecompilation> as3Cache = Cache.getInstance(true);
|
||||
private static Cache<String, SerializableImage> frameCache = Cache.getInstance(false,"frame");
|
||||
private final Cache<ASMSource, CachedScript> as2Cache = Cache.getInstance(true,"as2");
|
||||
private final Cache<ScriptPack, CachedDecompilation> as3Cache = Cache.getInstance(true,"as3");
|
||||
|
||||
public void updateCharacters() {
|
||||
characters.clear();
|
||||
|
||||
Reference in New Issue
Block a user