From cd534ccbe2f279f28c96945d344db3c189c17666 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:10:40 -0400 Subject: [PATCH] spelling: undefined Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- .../decompiler/flash/abc/avm2/parser/pcode/ASM3Parser.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/parser/pcode/ASM3Parser.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/parser/pcode/ASM3Parser.java index 67258e3e8..21e6255b1 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/parser/pcode/ASM3Parser.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/parser/pcode/ASM3Parser.java @@ -1228,7 +1228,7 @@ public class ASM3Parser { int exIndex = (Integer) symb.value; int listIndex = exceptionIndices.indexOf(exIndex); if (listIndex == -1) { - throw new AVM2ParseException("Undefinex exception index", lexer.yyline()); + throw new AVM2ParseException("Undefined exception index", lexer.yyline()); } exceptions.get(listIndex).start = offset; continue; @@ -1237,7 +1237,7 @@ public class ASM3Parser { int exIndex = (Integer) symb.value; int listIndex = exceptionIndices.indexOf(exIndex); if (listIndex == -1) { - throw new AVM2ParseException("Undefinex exception index", lexer.yyline()); + throw new AVM2ParseException("Undefined exception index", lexer.yyline()); } exceptions.get(listIndex).end = offset; continue; @@ -1246,7 +1246,7 @@ public class ASM3Parser { int exIndex = (Integer) symb.value; int listIndex = exceptionIndices.indexOf(exIndex); if (listIndex == -1) { - throw new AVM2ParseException("Undefinex exception index", lexer.yyline()); + throw new AVM2ParseException("Undefined exception index", lexer.yyline()); } exceptions.get(listIndex).target = offset; continue;