diff options
author | Roel Spilker <r.spilker@gmail.com> | 2013-12-03 21:17:05 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2013-12-11 22:40:48 +0100 |
commit | 9639bc2ff466e94f629d81ff00d8cab654f3ab19 (patch) | |
tree | 99cfe2f729e49d06642774c55b500452f2b9992b /test/transform/resource/after-delombok/ValInTryWithResources.java | |
parent | 54c30d98c06277f42d2098d4f0731580b9f095e9 (diff) | |
download | lombok-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/transform/resource/after-delombok/ValInTryWithResources.java')
-rw-r--r-- | test/transform/resource/after-delombok/ValInTryWithResources.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/after-delombok/ValInTryWithResources.java b/test/transform/resource/after-delombok/ValInTryWithResources.java index 73f8d1a2..9aae99a2 100644 --- a/test/transform/resource/after-delombok/ValInTryWithResources.java +++ b/test/transform/resource/after-delombok/ValInTryWithResources.java @@ -2,7 +2,7 @@ import java.io.IOException; public class ValInTryWithResources { public void whyTryInsteadOfCleanup() throws IOException { - try (final java.io.InputStream in = getClass().getResourceAsStream("ValInTryWithResources.class");) { + try (java.io.InputStream in = getClass().getResourceAsStream("ValInTryWithResources.class")) { final java.io.InputStream i = in; final int j = in.read(); } |