diff options
Diffstat (limited to 'test/delombok/resource/after/CleanupPlain.java')
-rw-r--r-- | test/delombok/resource/after/CleanupPlain.java | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/delombok/resource/after/CleanupPlain.java b/test/delombok/resource/after/CleanupPlain.java deleted file mode 100644 index 35d51543..00000000 --- a/test/delombok/resource/after/CleanupPlain.java +++ /dev/null @@ -1,18 +0,0 @@ -import java.io.*; -class CleanupPlain { - void test() throws Exception { - InputStream in = new FileInputStream("in"); - try { - OutputStream out = new FileOutputStream("out"); - try { - if (in.markSupported()) { - out.flush(); - } - } finally { - out.close(); - } - } finally { - in.close(); - } - } -} |