diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-01-19 00:48:54 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-01-19 00:48:54 +0100 |
commit | c680b1cfda8e23b5621704eae26997fcfa80560e (patch) | |
tree | fec8c5f0c7dd15f075392aae4dce3127a7b30d1e /src/eclipseAgent/lombok | |
parent | 0774cf929ca3746db650563b74bebeab11af19fa (diff) | |
parent | 5185f97cd6dd7697eeca2455897cbad9dea9ed96 (diff) | |
download | lombok-c680b1cfda8e23b5621704eae26997fcfa80560e.tar.gz lombok-c680b1cfda8e23b5621704eae26997fcfa80560e.tar.bz2 lombok-c680b1cfda8e23b5621704eae26997fcfa80560e.zip |
Merge branch 'Issue_325' of https://github.com/jvanderhel/lombok into jappe
Diffstat (limited to 'src/eclipseAgent/lombok')
-rw-r--r-- | src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java b/src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java index 62ab4b7b..1da96256 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java +++ b/src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java @@ -233,8 +233,8 @@ public class PatchFixes { } public static int fixRetrieveRightBraceOrSemiColonPosition(int original, int end) { - return original; - // return original == -1 ? end : original; // Need to fix: see issue 325. +// return original; + return original == -1 ? end : original; // Need to fix: see issue 325. } public static final int ALREADY_PROCESSED_FLAG = 0x800000; //Bit 24 |