handle exceptions in command line export: do not break... continue.

This commit is contained in:
honfika@gmail.com
2015-07-04 16:47:01 +02:00
parent b0b6ffba1f
commit 1cf974e661

View File

@@ -1092,7 +1092,7 @@ public class CommandLineArgumentParser {
swf = new SWF(new FileInputStream(inFile), sourceInfo.getFile(), sourceInfo.getFileTitle(), Configuration.parallelSpeedUp.get());
} catch (SwfOpenException ex) {
logger.log(Level.SEVERE, "Failed to open swf: " + inFile.getName(), ex);
break;
continue;
}
swf.swfList = new SWFList();