refactored the tests to prepare running ecj as well as delombok.

This commit is contained in:
Reinier Zwitserloot
2010-07-21 23:52:28 +02:00
parent 1a9f8f168a
commit 59e585a0c6
63 changed files with 386 additions and 186 deletions
@@ -0,0 +1,17 @@
import lombok.Synchronized;
class SynchronizedPlain1 {
@lombok.Synchronized void test() {
System.out.println("one");
}
@Synchronized void test2() {
System.out.println("two");
}
}
class SynchronizedPlain2 {
@lombok.Synchronized static void test() {
System.out.println("three");
}
@Synchronized static void test2() {
System.out.println("four");
}
}