diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-11-28 19:15:34 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-11-28 19:15:34 +0100 |
commit | a5c7d134c168f6f9e9ab6203cb54b1030057c790 (patch) | |
tree | 02ef8216f42ca2106cb6282457e131c525eac1cd /src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java | |
parent | aaf3101393d4f87ea8e256ba35a5b5374e6a0161 (diff) | |
parent | 4e831b05ec08399795d27c343b6324b5b6de3443 (diff) | |
download | lombok-a5c7d134c168f6f9e9ab6203cb54b1030057c790.tar.gz lombok-a5c7d134c168f6f9e9ab6203cb54b1030057c790.tar.bz2 lombok-a5c7d134c168f6f9e9ab6203cb54b1030057c790.zip |
Merge branch 'Highlighting' of https://github.com/jvanderhel/lombok into jvanderhel-Highlighting
Conflicts:
src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java
Diffstat (limited to 'src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java')
-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 e7d6c04b..e76073bf 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java +++ b/src/eclipseAgent/lombok/eclipse/agent/PatchFixes.java @@ -94,12 +94,12 @@ public class PatchFixes { public static int fixRetrieveEllipsisStartPosition(int original, int end) { return original == -1 ? end : original; } - + public static int fixRetrieveRightBraceOrSemiColonPosition(int original, int end) { return original == -1 ? end : original; } - public static final int ALREADY_PROCESSED_FLAG = 0x800000; //Bit 24 + public static final int ALREADY_PROCESSED_FLAG = 0x800000; //Bit 24 public static boolean checkBit24(Object node) throws Exception { int bits = (Integer)(node.getClass().getField("bits").get(node)); |