mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-30 04:21:45 +00:00
refactored the tests to prepare running ecj as well as delombok.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import lombok.Synchronized;
|
||||
class SynchronizedPlain1 {
|
||||
@lombok.Synchronized void test() {
|
||||
System.out.println("one");
|
||||
}
|
||||
@Synchronized void test2() {
|
||||
System.out.println("two");
|
||||
}
|
||||
}
|
||||
class SynchronizedPlain2 {
|
||||
@lombok.Synchronized static void test() {
|
||||
System.out.println("three");
|
||||
}
|
||||
@Synchronized static void test2() {
|
||||
System.out.println("four");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user