Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sfPlayer1 committed Oct 14, 2021
1 parent 9c9bc02 commit e3085a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ private void processLocals() {
for (int j = 0; j < methodNode.localVariables.size(); j++) {
if (j == i) continue;

LocalVariableNode otherLv = methodNode.localVariables.get(i);
LocalVariableNode otherLv = methodNode.localVariables.get(j);

if (otherLv.index == lv.index
&& otherLv.name != null
Expand Down

0 comments on commit e3085a9

Please sign in to comment.