Skip to content

Commit

Permalink
caps
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicPlayerA10 committed Aug 25, 2024
1 parent 8a0bd0b commit 7595a26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ public AbstractInsnNode getPrevious(int offset) {

public InsnNode toPop() {
if (this.getOpcode() == LSTORE || this.getOpcode() == DSTORE || this.sizeOnStack() == 2) {
// Long and double values take up two stack values. Need to use pop2
// Long and double values take up two stack values. Need to use POP2
return new InsnNode(POP2);
} else {
return new InsnNode(POP);
Expand Down

0 comments on commit 7595a26

Please sign in to comment.