diff options
author | Roel Spilker <r.spilker@gmail.com> | 2009-12-01 23:23:35 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2009-12-01 23:31:12 +0100 |
commit | 2aebaff46026dbfa447fd7454472e88c41dc8103 (patch) | |
tree | 609c69c3cd5277e861315a2b23deb86a8e5c2de9 /test/lombok/resource/before/CleanupPlain.java | |
parent | 2a56f341d0073099859db815caf9d455f74e6198 (diff) | |
download | lombok-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/before/CleanupPlain.java')
-rw-r--r-- | test/lombok/resource/before/CleanupPlain.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/lombok/resource/before/CleanupPlain.java b/test/lombok/resource/before/CleanupPlain.java deleted file mode 100644 index a91ac3c1..00000000 --- a/test/lombok/resource/before/CleanupPlain.java +++ /dev/null @@ -1,11 +0,0 @@ -import lombok.Cleanup; -import java.io.*; -class CleanupPlain { - void test() throws Exception { - @lombok.Cleanup InputStream in = new FileInputStream("in"); - @Cleanup OutputStream out = new FileOutputStream("out"); - if (in.markSupported()) { - out.flush(); - } - } -}
\ No newline at end of file |