Skip to content

Commit

Permalink
Finally: Replace .label by .getLabel()
Browse files Browse the repository at this point in the history
  • Loading branch information
don-vip committed Feb 29, 2020
1 parent a0da207 commit 2dac1bc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,12 @@ private enum JumpType {
}

public FinallyJumpMatcher(JCContinue jcContinue) {
this.label = jcContinue.label;
this.label = jcContinue.getLabel();
this.jumpType = JumpType.CONTINUE;
}

public FinallyJumpMatcher(JCBreak jcBreak) {
this.label = jcBreak.label;
this.label = jcBreak.getLabel();
this.jumpType = JumpType.BREAK;
}

Expand Down

0 comments on commit 2dac1bc

Please sign in to comment.