From e5e101214c8c37d0724e2beb2af8d1ee4ef47fd7 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 25 Jan 2016 16:13:21 -0500 Subject: [PATCH] ahhhhhhhhhhhhhhhhhhh --- .../runelite/deob/attributes/code/instructions/IfNull.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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); }