aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/CleanupName.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/lombok/resource/after/CleanupName.java')
-rw-r--r--test/lombok/resource/after/CleanupName.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/lombok/resource/after/CleanupName.java b/test/lombok/resource/after/CleanupName.java
deleted file mode 100644
index 26997372..00000000
--- a/test/lombok/resource/after/CleanupName.java
+++ /dev/null
@@ -1,10 +0,0 @@
-class Cleanup {
- void test() throws Exception {
- Object o = "Hello World!";
- try {
- System.out.println(o);
- } finally {
- o.toString();
- }
- }
-}