diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-06 22:14:22 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-06-06 22:14:22 +0200 |
commit | eac3971390c1b2cb7636ce289af470dd7668dfe8 (patch) | |
tree | a42f4f427b86288b352ab37354ed7aaa9914579f /src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java | |
parent | 05465b66a8ca6d6691585906bc21a32a9e6d0949 (diff) | |
download | lombok-eac3971390c1b2cb7636ce289af470dd7668dfe8.tar.gz lombok-eac3971390c1b2cb7636ce289af470dd7668dfe8.tar.bz2 lombok-eac3971390c1b2cb7636ce289af470dd7668dfe8.zip |
-javaagent:lombok.jar=ECJ should now work to enable lombok in any ecj-based tool including ecj itself.
Diffstat (limited to 'src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java')
-rw-r--r-- | src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java index 4efc6536..ba8e6813 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java +++ b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java @@ -81,7 +81,6 @@ public class EclipsePatcher extends Agent { patchAvoidReparsingGeneratedCode(sm); if (!ecjOnly) { - patchLombokizeAST(sm); patchCatchReparse(sm); patchIdentifierEndReparse(sm); patchRetrieveEllipsisStartPosition(sm); @@ -94,6 +93,7 @@ public class EclipsePatcher extends Agent { patchPostCompileHookEcj(sm); } + patchLombokizeAST(sm); patchEcjTransformers(sm, ecjOnly); if (reloadExistingClasses) sm.reloadClasses(instrumentation); |