aboutsummaryrefslogtreecommitdiff
path: root/src_eclipseagent/java/lombok/eclipse/PatchFixes.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-09-29 17:15:24 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-09-29 17:15:24 +0200
commitb3d191e30023a4d80ffc88646446f2df0bc2f353 (patch)
treef3a4592ef412ca60deaa59c3af245fb2056fca95 /src_eclipseagent/java/lombok/eclipse/PatchFixes.java
parent27a3efeb1cb6f79ecefc6e641ba78de6d69406c3 (diff)
downloadlombok-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.java14
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;
- }
-}