mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-13 17:28:09 +00:00
instruction set fix
This commit is contained in:
@@ -735,7 +735,7 @@ public class ASM3Parser {
|
||||
}
|
||||
boolean insFound = false;
|
||||
for (InstructionDefinition def : AVM2Code.instructionSet) {
|
||||
if (def.instructionName.equals((String) symb.value)) {
|
||||
if (def != null && def.instructionName.equals((String) symb.value)) {
|
||||
insFound = true;
|
||||
List<Integer> operandsList = new ArrayList<>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user