From b3d191e30023a4d80ffc88646446f2df0bc2f353 Mon Sep 17 00:00:00 2001
From: Reinier Zwitserloot <reinier@tipit.to>
Date: Tue, 29 Sep 2009 17:15:24 +0200
Subject: Everything seems to be working smoothly! Perhaps time to make this
 the main branch...

---
 src/lombok/eclipse/TransformEclipseAST.java | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'src')

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
-- 
cgit