smart enter for try-with-resources body

This commit is contained in:
peter
2016-03-04 18:05:09 +01:00
parent 98d14dcba3
commit 9abaffbeeb
5 changed files with 52 additions and 0 deletions
@@ -0,0 +1,7 @@
public class Foo {
{
try (Foo f = new Foo()) {
<caret>
}
}
}