IDEA-126726 "Complete current statement" always adds a newline

* rollback the fix for IDEA-119926
This commit is contained in:
peter
2014-07-08 13:13:51 +02:00
parent 8342911e2a
commit 02fdc91a10
17 changed files with 17 additions and 38 deletions
@@ -8,7 +8,6 @@ class Tester {
}
public void test1() {
build(new EntityBuilder());
<caret>
build(new EntityBuilder());<caret>
}
}
@@ -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;}