diff options
Diffstat (limited to 'test/transform/resource/after-eclipse/CleanupPlain.java')
-rw-r--r-- | test/transform/resource/after-eclipse/CleanupPlain.java | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/test/transform/resource/after-eclipse/CleanupPlain.java b/test/transform/resource/after-eclipse/CleanupPlain.java deleted file mode 100644 index a9b9eceb..00000000 --- a/test/transform/resource/after-eclipse/CleanupPlain.java +++ /dev/null @@ -1,35 +0,0 @@ -import lombok.Cleanup; -import java.io.*; -class CleanupPlain { - CleanupPlain() { - super(); - } - void test() throws Exception { - @lombok.Cleanup InputStream in = new FileInputStream("in"); - try - { - @Cleanup OutputStream out = new FileOutputStream("out"); - try - { - if (in.markSupported()) - { - out.flush(); - } - } - finally - { - if ((java.util.Collections.singletonList(out).get(0) != null)) - { - out.close(); - } - } - } - finally - { - if ((java.util.Collections.singletonList(in).get(0) != null)) - { - in.close(); - } - } - } -}
\ No newline at end of file |