IDEA-178933 Complete current statement for if statement without opening bracket

This commit is contained in:
peter
2017-09-15 22:04:10 +02:00
parent 1c0b37c8cd
commit 8561e8cb19
4 changed files with 24 additions and 0 deletions
@@ -0,0 +1,6 @@
class Foo {
public void foo() {
if 1 > 2<caret>
}
}
@@ -0,0 +1,8 @@
class Foo {
public void foo() {
if (1 > 2) {
<caret>
}
}
}