From 21866da09349f01c994ddd974715a7f1854fea75 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Sun, 7 Aug 2016 08:42:46 +0200 Subject: [PATCH] #1265 Error during export with IndexOutOfBoundsException: fixed --- .../src/com/jpexs/decompiler/flash/xfl/XFLConverter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java index f20ad0899..09ba3a0f9 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java @@ -1393,7 +1393,7 @@ public class XFLConverter { } /* From JSFL, also data types integerArray ("I"), doubleArray("D") and byteArray("B") can be set. - These datatypes can be in the FLA file but are not exported to SWF with _EMBED_SWF_ publish format. + These datatypes can be in the FLA file but are not exported to SWF with _EMBED_SWF_ publish format. */ } @@ -1852,7 +1852,7 @@ public class XFLConverter { break; } - } catch (IOException | ArrayIndexOutOfBoundsException ex) { + } catch (IOException | IndexOutOfBoundsException ex) { logger.log(Level.SEVERE, null, ex); } }