java postfix templates: add braces for while loop IDEA-153730

This commit is contained in:
Andrey Starovoyt
2016-05-13 19:29:39 +03:00
parent a3d2b8f1d0
commit 134c9f30e6
3 changed files with 10 additions and 6 deletions
@@ -1,6 +1,8 @@
public class Foo {
void m(boolean x) {
while (x)<caret>
while (x) {
<caret>
}
return;
}
}
@@ -1,6 +1,8 @@
public class Foo {
void m(Boolean x) {
while (x)<caret>
while (x) {
<caret>
}
return;
}
}