From 1cf974e66164a5edf99b3522adf14511cf2fdc12 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Sat, 4 Jul 2015 16:47:01 +0200 Subject: [PATCH] handle exceptions in command line export: do not break... continue. --- .../decompiler/flash/console/CommandLineArgumentParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index b16977779..e9ad67bee 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -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();