blob: cbc5b4472fde9aea3982ef50accd4bed919e0dad (
plain)
1
2
3
4
5
6
7
8
9
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);
}
}
|