Skip to content

Commit

Permalink
Issue 325: revert old behaviour of fixRetrieveRightBrace...
Browse files Browse the repository at this point in the history
  • Loading branch information
askoning committed Jan 16, 2012
1 parent 06dceeb commit 7627d03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ public static int fixRetrieveEllipsisStartPosition(int original, int end) {
}

public static int fixRetrieveRightBraceOrSemiColonPosition(int original, int end) {
return original == -1 ? end : original;
return original;
// return original == -1 ? end : original; // Need to fix: see issue 325.
}

public static final int ALREADY_PROCESSED_FLAG = 0x800000; //Bit 24
Expand Down

0 comments on commit 7627d03

Please sign in to comment.