diff options
Diffstat (limited to 'test/delombok/resource/after/SynchronizedPlain.java')
-rw-r--r-- | test/delombok/resource/after/SynchronizedPlain.java | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test/delombok/resource/after/SynchronizedPlain.java b/test/delombok/resource/after/SynchronizedPlain.java deleted file mode 100644 index 695a3089..00000000 --- a/test/delombok/resource/after/SynchronizedPlain.java +++ /dev/null @@ -1,28 +0,0 @@ -class SynchronizedPlain1 { - void test() { - synchronized (this.$lock) { - System.out.println("one"); - } - } - void test2() { - synchronized (this.$lock) { - System.out.println("two"); - } - } - @java.lang.SuppressWarnings("all") - private final java.lang.Object $lock = new java.lang.Object[0]; -} -class SynchronizedPlain2 { - static void test() { - synchronized (SynchronizedPlain2.$LOCK) { - System.out.println("three"); - } - } - static void test2() { - synchronized (SynchronizedPlain2.$LOCK) { - System.out.println("four"); - } - } - @java.lang.SuppressWarnings("all") - private static final java.lang.Object $LOCK = new java.lang.Object[0]; -}
\ No newline at end of file |