diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-29 17:15:24 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-29 17:15:24 +0200 |
commit | b3d191e30023a4d80ffc88646446f2df0bc2f353 (patch) | |
tree | f3a4592ef412ca60deaa59c3af245fb2056fca95 /src_eclipseagent/java/lombok/eclipse/PatchFixes.java | |
parent | 27a3efeb1cb6f79ecefc6e641ba78de6d69406c3 (diff) | |
download | lombok-b3d191e30023a4d80ffc88646446f2df0bc2f353.tar.gz lombok-b3d191e30023a4d80ffc88646446f2df0bc2f353.tar.bz2 lombok-b3d191e30023a4d80ffc88646446f2df0bc2f353.zip |
Everything seems to be working smoothly! Perhaps time to make this the main branch...
Diffstat (limited to 'src_eclipseagent/java/lombok/eclipse/PatchFixes.java')
-rw-r--r-- | src_eclipseagent/java/lombok/eclipse/PatchFixes.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src_eclipseagent/java/lombok/eclipse/PatchFixes.java b/src_eclipseagent/java/lombok/eclipse/PatchFixes.java deleted file mode 100644 index 23c60d32..00000000 --- a/src_eclipseagent/java/lombok/eclipse/PatchFixes.java +++ /dev/null @@ -1,14 +0,0 @@ -package java.lombok.eclipse; - -public class PatchFixes { - public static int fixRetrieveStartingCatchPosition(int in) { - return in; - } - - private static final int BIT24 = 0x800000; - - public static boolean checkBit24(Object node) throws Exception { - int bits = (Integer)(node.getClass().getField("bits").get(node)); - return (bits & BIT24) != 0; - } -} |