aboutsummaryrefslogtreecommitdiff
path: root/src/eclipseAgent/lombok
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-01-02 20:33:42 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-01-02 20:33:42 +0100
commit8fb7c9c8a25646421b6ecf4693ff801652b55241 (patch)
tree5e4cef188bc5219ad54c003818b57f48bc0d229d /src/eclipseAgent/lombok
parentba680ad97a203b5d3d43e6219f7700af28542445 (diff)
downloadlombok-8fb7c9c8a25646421b6ecf4693ff801652b55241.tar.gz
lombok-8fb7c9c8a25646421b6ecf4693ff801652b55241.tar.bz2
lombok-8fb7c9c8a25646421b6ecf4693ff801652b55241.zip
trivial
Diffstat (limited to 'src/eclipseAgent/lombok')
-rw-r--r--src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java
index 0728c830..c1c1e988 100644
--- a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java
+++ b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java
@@ -78,8 +78,6 @@ public class EclipsePatcher extends Agent {
EquinoxClassLoader.registerScripts(sm);
}
- patchAvoidReparsingGeneratedCode(sm);
-
if (!ecjOnly) {
patchCatchReparse(sm);
patchIdentifierEndReparse(sm);
@@ -98,6 +96,7 @@ public class EclipsePatcher extends Agent {
patchPostCompileHookEcj(sm);
}
+ patchAvoidReparsingGeneratedCode(sm);
patchLombokizeAST(sm);
patchEcjTransformers(sm, ecjOnly);
@@ -153,7 +152,7 @@ public class EclipsePatcher extends Agent {
}
private static void patchSortMembersOperation(ScriptManager sm) {
- /* Fixes "sort members" action with @Data @Log
+ /* Fixes "sort members" action with @Data @Log
* I would have liked to patch sortMembers, but kept getting a VerifyError: Illegal type in constant pool
* So now I just patch all calling methods
*/