aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/CleanupPlain.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2009-12-01 23:23:35 +0100
committerRoel Spilker <r.spilker@gmail.com>2009-12-01 23:31:12 +0100
commit2aebaff46026dbfa447fd7454472e88c41dc8103 (patch)
tree609c69c3cd5277e861315a2b23deb86a8e5c2de9 /test/lombok/resource/after/CleanupPlain.java
parent2a56f341d0073099859db815caf9d455f74e6198 (diff)
downloadlombok-2aebaff46026dbfa447fd7454472e88c41dc8103.tar.gz
lombok-2aebaff46026dbfa447fd7454472e88c41dc8103.tar.bz2
lombok-2aebaff46026dbfa447fd7454472e88c41dc8103.zip
Moved test resource files to a better matching location
Diffstat (limited to 'test/lombok/resource/after/CleanupPlain.java')
-rw-r--r--test/lombok/resource/after/CleanupPlain.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/lombok/resource/after/CleanupPlain.java b/test/lombok/resource/after/CleanupPlain.java
deleted file mode 100644
index 35d51543..00000000
--- a/test/lombok/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();
- }
- }
-}