aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/after/tryWithResourcesVarRef.java
diff options
context:
space:
mode:
authorRawi01 <Rawi01@users.noreply.github.com>2020-10-02 17:30:07 +0200
committerRoel Spilker <r.spilker@gmail.com>2020-10-02 18:32:29 +0200
commit4f763367f1092546350324f3040fa84cb0380409 (patch)
treee13c9f0b55f37638d822d21265ded43599abc97a /test/pretty/resource/after/tryWithResourcesVarRef.java
parent2ba65d105ddfce54690a64f93cbc5c55480ef364 (diff)
downloadlombok-4f763367f1092546350324f3040fa84cb0380409.tar.gz
lombok-4f763367f1092546350324f3040fa84cb0380409.tar.bz2
lombok-4f763367f1092546350324f3040fa84cb0380409.zip
Rename TryWithResourcesVarRef
Diffstat (limited to 'test/pretty/resource/after/tryWithResourcesVarRef.java')
-rw-r--r--test/pretty/resource/after/tryWithResourcesVarRef.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/pretty/resource/after/tryWithResourcesVarRef.java b/test/pretty/resource/after/tryWithResourcesVarRef.java
deleted file mode 100644
index 5117f706..00000000
--- a/test/pretty/resource/after/tryWithResourcesVarRef.java
+++ /dev/null
@@ -1,9 +0,0 @@
-import java.io.PrintWriter;
-public class TryWithResourcesVarRef {
- {
- PrintWriter pw = new PrintWriter(System.out);
- try (pw) {
- pw.println();
- }
- }
-}