Skip to content

Commit

Permalink
Finally: Replace .label by .getLabel()
Browse files Browse the repository at this point in the history
See #1106 - field removed in JDK12 as per

Fixes #1107

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=302397069
  • Loading branch information
don-vip authored and nick-someone committed Mar 23, 2020
1 parent e5dfb88 commit f838f78
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 f838f78

Please sign in to comment.