mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-08 18:17:49 +00:00
refactored the tests to prepare running ecj as well as delombok.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class CleanupName {
|
||||
void test() {
|
||||
@lombok.Cleanup("toString") Object o = "Hello World!";
|
||||
System.out.println(o);
|
||||
}
|
||||
void test2() {
|
||||
@lombok.Cleanup(value="toString") Object o = "Hello World too!";
|
||||
System.out.println(o);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user