diff options
Diffstat (limited to 'usage_examples/SynchronizedExample_post.jpage')
-rw-r--r-- | usage_examples/SynchronizedExample_post.jpage | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/usage_examples/SynchronizedExample_post.jpage b/usage_examples/SynchronizedExample_post.jpage deleted file mode 100644 index 219ab88a..00000000 --- a/usage_examples/SynchronizedExample_post.jpage +++ /dev/null @@ -1,23 +0,0 @@ -public class SynchronizedExample { - private static final Object $LOCK = new Object[0]; - private final Object $lock = new Object[0]; - private final Object readLock = new Object(); - - public static void hello() { - synchronized($LOCK) { - System.out.println("world"); - } - } - - public int answerToLife() { - synchronized($lock) { - return 42; - } - } - - public void foo() { - synchronized(readLock) { - System.out.println("bar"); - } - } -} |