IDEA-158249 Complete Current Statement of for loop: code is not reformatted

This commit is contained in:
peter
2018-01-02 15:55:43 +01:00
parent d047658f81
commit dd9fa434e0
5 changed files with 24 additions and 1 deletions
@@ -1,6 +1,6 @@
class Foo {
{
for (;;) {
for (; ; ) {
<caret>
}
}
@@ -0,0 +1,5 @@
public class Foo {
void test() {
for (int j=1; j<10; j++) <caret>
}
}
@@ -0,0 +1,7 @@
public class Foo {
void test() {
for (int j = 1; j < 10; j++) {
<caret>
}
}
}