mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-04 22:16:48 +00:00
The great rename: the old ‘website’ is now ‘website-old’, and ‘website2’ is now ‘website’.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import lombok.Synchronized;
|
||||
|
||||
public class SynchronizedExample {
|
||||
private final Object readLock = new Object();
|
||||
|
||||
@Synchronized
|
||||
public static void hello() {
|
||||
System.out.println("world");
|
||||
}
|
||||
|
||||
@Synchronized
|
||||
public int answerToLife() {
|
||||
return 42;
|
||||
}
|
||||
|
||||
@Synchronized("readLock")
|
||||
public void foo() {
|
||||
System.out.println("bar");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user