diff options
Diffstat (limited to 'test/transform/resource/after-eclipse/CleanupName.java')
-rw-r--r-- | test/transform/resource/after-eclipse/CleanupName.java | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/transform/resource/after-eclipse/CleanupName.java b/test/transform/resource/after-eclipse/CleanupName.java deleted file mode 100644 index f3f725f2..00000000 --- a/test/transform/resource/after-eclipse/CleanupName.java +++ /dev/null @@ -1,33 +0,0 @@ -class CleanupName { - CleanupName() { - super(); - } - void test() { - @lombok.Cleanup("toString") Object o = "Hello World!"; - try - { - System.out.println(o); - } - finally - { - if ((java.util.Collections.singletonList(o).get(0) != null)) - { - o.toString(); - } - } - } - void test2() { - @lombok.Cleanup(value = "toString") Object o = "Hello World too!"; - try - { - System.out.println(o); - } - finally - { - if ((java.util.Collections.singletonList(o).get(0) != null)) - { - o.toString(); - } - } - } -}
\ No newline at end of file |