aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/after
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2013-12-03 21:17:05 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-12-11 22:40:48 +0100
commit9639bc2ff466e94f629d81ff00d8cab654f3ab19 (patch)
tree99cfe2f729e49d06642774c55b500452f2b9992b /test/pretty/resource/after
parent54c30d98c06277f42d2098d4f0731580b9f095e9 (diff)
downloadlombok-9639bc2ff466e94f629d81ff00d8cab654f3ab19.tar.gz
lombok-9639bc2ff466e94f629d81ff00d8cab654f3ab19.tar.bz2
lombok-9639bc2ff466e94f629d81ff00d8cab654f3ab19.zip
[pretty] Make the tests work with the new delombok formatting options.
Diffstat (limited to 'test/pretty/resource/after')
-rw-r--r--test/pretty/resource/after/TryWithResources.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pretty/resource/after/TryWithResources.java b/test/pretty/resource/after/TryWithResources.java
index 1a8b82e2..eb622f2c 100644
--- a/test/pretty/resource/after/TryWithResources.java
+++ b/test/pretty/resource/after/TryWithResources.java
@@ -2,7 +2,7 @@
import java.io.PrintWriter;
public class TryWithResources {
{
- try (final PrintWriter pw = new PrintWriter(System.out);) {
+ try (PrintWriter pw = new PrintWriter(System.out)) {
pw.println();
}
}