mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-01 01:33:13 +00:00
spelling: undefined
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
33794e6609
commit
cd534ccbe2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user