mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-126726 "Complete current statement" always adds a newline
* rollback the fix for IDEA-119926
This commit is contained in:
+1
-2
@@ -8,7 +8,6 @@ class Tester {
|
||||
}
|
||||
|
||||
public void test1() {
|
||||
build(new EntityBuilder());
|
||||
<caret>
|
||||
build(new EntityBuilder());<caret>
|
||||
}
|
||||
}
|
||||
|
||||
+1
-2
@@ -5,7 +5,6 @@ public class MyJavaClass {
|
||||
|
||||
{
|
||||
|
||||
List l = new ArrayList(239);
|
||||
<caret>
|
||||
List l = new ArrayList(239);<caret>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,8 +2,7 @@ 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