diff options
author | Roel Spilker <r.spilker@gmail.com> | 2009-11-29 17:28:27 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2009-11-29 17:28:27 +0100 |
commit | 78c1f1da1169522324b69079cb49a91b9e8d7b76 (patch) | |
tree | c42bba7c88e934632abdc1751893d56ac9b5583c /test/lombok/resource/after/SynchronizedPlain.java | |
parent | 3cf45e932b26f8e96caeecdae570cf7d9cd5e328 (diff) | |
download | lombok-78c1f1da1169522324b69079cb49a91b9e8d7b76.tar.gz lombok-78c1f1da1169522324b69079cb49a91b9e8d7b76.tar.bz2 lombok-78c1f1da1169522324b69079cb49a91b9e8d7b76.zip |
Updated tests for Getter, Setter and Cleanup. Added Synchronized
Diffstat (limited to 'test/lombok/resource/after/SynchronizedPlain.java')
-rw-r--r-- | test/lombok/resource/after/SynchronizedPlain.java | 26 |
1 files changed, 26 insertions, 0 deletions
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 |