aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/before/CleanupPlain.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2009-11-29 17:28:27 +0100
committerRoel Spilker <r.spilker@gmail.com>2009-11-29 17:28:27 +0100
commit78c1f1da1169522324b69079cb49a91b9e8d7b76 (patch)
treec42bba7c88e934632abdc1751893d56ac9b5583c /test/lombok/resource/before/CleanupPlain.java
parent3cf45e932b26f8e96caeecdae570cf7d9cd5e328 (diff)
downloadlombok-78c1f1da1169522324b69079cb49a91b9e8d7b76.tar.gz
lombok-78c1f1da1169522324b69079cb49a91b9e8d7b76.tar.bz2
lombok-78c1f1da1169522324b69079cb49a91b9e8d7b76.zip
Updated tests for Getter, Setter and Cleanup. Added Synchronized
Diffstat (limited to 'test/lombok/resource/before/CleanupPlain.java')
-rw-r--r--test/lombok/resource/before/CleanupPlain.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/lombok/resource/before/CleanupPlain.java b/test/lombok/resource/before/CleanupPlain.java
index 6cf09062..a91ac3c1 100644
--- a/test/lombok/resource/before/CleanupPlain.java
+++ b/test/lombok/resource/before/CleanupPlain.java
@@ -1,7 +1,6 @@
-//ignore
import lombok.Cleanup;
import java.io.*;
-class Cleanup {
+class CleanupPlain {
void test() throws Exception {
@lombok.Cleanup InputStream in = new FileInputStream("in");
@Cleanup OutputStream out = new FileOutputStream("out");