exporting no longer fires GUI

This commit is contained in:
Jindra Pet��k
2012-10-20 16:59:40 +02:00
8 changed files with 115 additions and 45 deletions
+2 -1
View File
@@ -181,7 +181,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;
}