diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-29 17:15:24 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-09-29 17:15:24 +0200 |
commit | b3d191e30023a4d80ffc88646446f2df0bc2f353 (patch) | |
tree | f3a4592ef412ca60deaa59c3af245fb2056fca95 /src | |
parent | 27a3efeb1cb6f79ecefc6e641ba78de6d69406c3 (diff) | |
download | lombok-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')
-rw-r--r-- | src/lombok/eclipse/TransformEclipseAST.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lombok/eclipse/TransformEclipseAST.java b/src/lombok/eclipse/TransformEclipseAST.java index 365b65a2..b975dc3e 100644 --- a/src/lombok/eclipse/TransformEclipseAST.java +++ b/src/lombok/eclipse/TransformEclipseAST.java @@ -90,6 +90,10 @@ public class TransformEclipseAST { //potential speedup: if trace contains org.eclipse.swt.widgets. -> stop - nothing interesting ever follows that. I think. } + public static void transform_swapped(CompilationUnitDeclaration ast, Parser parser) { + transform(parser, ast); + } + /** * This method is called immediately after Eclipse finishes building a CompilationUnitDeclaration, which is * the top-level AST node when Eclipse parses a source file. The signature is 'magic' - you should not |