IDEA-83744 Always insert '()' when class name is completed after 'new' keyword

This commit is contained in:
peter
2012-06-22 14:44:11 +02:00
parent b40af47e25
commit 3a3548f2a2
18 changed files with 242 additions and 162 deletions
@@ -2,7 +2,7 @@ public class TestClass {
public TestClass create() {
final int value = 1;
return new Xxx<caret>(value);
return new Xxx(<caret>value);
}
}