From 8fb7c9c8a25646421b6ecf4693ff801652b55241 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 2 Jan 2012 20:33:42 +0100 Subject: trivial --- src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/eclipseAgent/lombok/eclipse/agent') 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 */ -- cgit