mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-23 20:27:03 +00:00
9 lines
121 B
Java
9 lines
121 B
Java
package pkg;
|
|
|
|
import lombok.Synchronized;
|
|
|
|
public class ClassWithSynchronized {
|
|
@Synchronized
|
|
public void test() {
|
|
}
|
|
} |