From 2aebaff46026dbfa447fd7454472e88c41dc8103 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Tue, 1 Dec 2009 23:23:35 +0100 Subject: Moved test resource files to a better matching location --- test/lombok/resource/after/SynchronizedPlain.java | 26 ----------------------- 1 file changed, 26 deletions(-) delete mode 100644 test/lombok/resource/after/SynchronizedPlain.java (limited to 'test/lombok/resource/after/SynchronizedPlain.java') diff --git a/test/lombok/resource/after/SynchronizedPlain.java b/test/lombok/resource/after/SynchronizedPlain.java deleted file mode 100644 index fcbe03f2..00000000 --- a/test/lombok/resource/after/SynchronizedPlain.java +++ /dev/null @@ -1,26 +0,0 @@ -class SynchronizedPlain1 { - void test() { - synchronized ($lock) { - System.out.println("one"); - } - } - void test2() { - synchronized ($lock) { - System.out.println("two"); - } - } - private final java.lang.Object $lock = new java.lang.Object[0]; -} -class SynchronizedPlain2 { - static void test() { - synchronized ($LOCK) { - System.out.println("three"); - } - } - static void test2() { - synchronized ($LOCK) { - System.out.println("four"); - } - } - private static final java.lang.Object $LOCK = new java.lang.Object[0]; -} \ No newline at end of file -- cgit