aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/SynchronizedPlain.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/lombok/resource/after/SynchronizedPlain.java')
-rw-r--r--test/lombok/resource/after/SynchronizedPlain.java26
1 files changed, 0 insertions, 26 deletions
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