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 11, 2019
1 parent a17a68e commit 65a3619
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,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 65a3619

Please sign in to comment.