mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-19 13:21:54 +00:00
Using a BufferedInputStream greatly reduces loading file of uncompressed swf files.
This commit is contained in:
@@ -179,7 +179,8 @@ public class Main {
|
||||
|
||||
public static SWF parseSWF(String file) throws Exception {
|
||||
FileInputStream fis = new FileInputStream(file);
|
||||
SWF locswf = new SWF(fis);
|
||||
InputStream bis = new BufferedInputStream(fis);
|
||||
SWF locswf = new SWF(bis);
|
||||
return locswf;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user