From 78c1f1da1169522324b69079cb49a91b9e8d7b76 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Sun, 29 Nov 2009 17:28:27 +0100 Subject: Updated tests for Getter, Setter and Cleanup. Added Synchronized --- test/lombok/resource/after/SynchronizedPlain.java | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create 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 new file mode 100644 index 00000000..2c168368 --- /dev/null +++ b/test/lombok/resource/after/SynchronizedPlain.java @@ -0,0 +1,26 @@ +class SynchronizedPlain1 { + private final Object $lock = new Object[0]; + void test() { + synchronized ($lock) { + System.out.println("one"); + } + } + void test2() { + synchronized ($lock) { + System.out.println("two"); + } + } +} +class SynchronizedPlain2 { + private static final Object $LOCK = new Object[0]; + static void test() { + synchronized ($LOCK) { + System.out.println("three"); + } + } + static void test2() { + synchronized ($LOCK) { + System.out.println("four"); + } + } +} \ No newline at end of file -- cgit