From 348767c8e8309e06944373193ccafe10a727b5ef Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Tue, 9 Feb 2016 10:49:07 +0100 Subject: [PATCH] #1148: log exception --- libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ABC.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ABC.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ABC.java index 4e3ac39a9..27862d198 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ABC.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/ABC.java @@ -571,7 +571,9 @@ public class ABC { bodies.add(mb); ais.endDumpLevel(); } catch (EndOfStreamException ex) { + logger.log(Level.SEVERE, "MethodBody reading: End of stream", ex); ais.endDumpLevelUntil(di); + break; } SWFDecompilerPlugin.fireMethodBodyParsed(mb, swf);