diff --git a/src/main/java/net/runelite/deob/attributes/code/instructions/IfNull.java b/src/main/java/net/runelite/deob/attributes/code/instructions/IfNull.java index ec171b7853..50885dfd86 100644 --- a/src/main/java/net/runelite/deob/attributes/code/instructions/IfNull.java +++ b/src/main/java/net/runelite/deob/attributes/code/instructions/IfNull.java @@ -33,10 +33,6 @@ public class IfNull extends If0 return true; } } - else if (otherIc.getInstruction() instanceof IfNull) - { - return true; - } return false; } @@ -44,7 +40,7 @@ public class IfNull extends If0 @Override public void map(ParallelExecutorMapping mapping, InstructionContext ctx, InstructionContext other) { - if (other.getInstruction() instanceof IfACmpNe || other.getInstruction() instanceof IfNull) + if (other.getInstruction() instanceof IfACmpNe) { super.mapOtherBranch(mapping, ctx, other); }