Skip to content

Commit

Permalink
fix: instruction deep equals must check result
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Nov 16, 2018
1 parent 850bd96 commit 1fc92d2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions jadx-core/src/main/java/jadx/core/dex/nodes/InsnNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ public boolean isDeepEquals(InsnNode other) {
return true;
}
return isSame(other)
&& Objects.equals(result, other.result)
&& Objects.equals(arguments, other.arguments);
}

Expand Down

0 comments on commit 1fc92d2

Please sign in to comment.