From b3d191e30023a4d80ffc88646446f2df0bc2f353 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 29 Sep 2009 17:15:24 +0200 Subject: Everything seems to be working smoothly! Perhaps time to make this the main branch... --- src_eclipseagent/java/lombok/eclipse/PatchFixes.java | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src_eclipseagent/java/lombok/eclipse/PatchFixes.java (limited to 'src_eclipseagent/java/lombok/eclipse/PatchFixes.java') 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; - } -} -- cgit