diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-07 23:54:12 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-07 23:54:12 +0200 |
commit | bb09fa4f050a7f3cb172af69487de21d6d630bbd (patch) | |
tree | 77719ba6e3e092ab47ac1edff3d78e70af2de94a /src | |
parent | c2f1858781a4a1a5ae6f47a961172ee0b4cb6d53 (diff) | |
parent | 23da5b1e80bd03ee3fc02b7d7ee03130f158e7c4 (diff) | |
download | lombok-bb09fa4f050a7f3cb172af69487de21d6d630bbd.tar.gz lombok-bb09fa4f050a7f3cb172af69487de21d6d630bbd.tar.bz2 lombok-bb09fa4f050a7f3cb172af69487de21d6d630bbd.zip |
Merge branch 'lombokpatcher'
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 3caddb18..691327b1 100644 --- a/src/lombok/eclipse/TransformEclipseAST.java +++ b/src/lombok/eclipse/TransformEclipseAST.java @@ -95,6 +95,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 |