mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
IDEA-119926 Completing Statements doesn't go to next line for non conditional statements
This commit is contained in:
+2
-1
@@ -8,6 +8,7 @@ class Tester {
|
||||
}
|
||||
|
||||
public void test1() {
|
||||
build(new EntityBuilder());<caret>
|
||||
build(new EntityBuilder());
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
|
||||
+2
-1
@@ -5,6 +5,7 @@ public class MyJavaClass {
|
||||
|
||||
{
|
||||
|
||||
List l = new ArrayList(239);<caret>
|
||||
List l = new ArrayList(239);
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,8 @@ public class Foo {
|
||||
|
||||
{
|
||||
Foo foo = null;
|
||||
Foo bar = id(foo);<caret>
|
||||
Foo bar = id(foo);
|
||||
<caret>
|
||||
}
|
||||
|
||||
Foo id(Foo foo) {return foo;}
|
||||
|
||||
Reference in New Issue
Block a user