diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2020-10-02 17:30:07 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2020-10-02 18:32:29 +0200 |
commit | 4f763367f1092546350324f3040fa84cb0380409 (patch) | |
tree | e13c9f0b55f37638d822d21265ded43599abc97a /test/pretty/resource/after/tryWithResourcesVarRef.java | |
parent | 2ba65d105ddfce54690a64f93cbc5c55480ef364 (diff) | |
download | lombok-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.java | 9 |
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(); - } - } -} |