make complete-statement-completion smart-wrap constructor arguments (IDEADEV-41023)

This commit is contained in:
peter
2009-10-28 22:48:21 +00:00
parent b29804d2bf
commit 50da4c1d5a
4 changed files with 29 additions and 2 deletions
@@ -0,0 +1,11 @@
import java.util.ArrayList;
import java.util.List;
public class MyJavaClass {
{
List l = new ArrayList(239);
<caret>
}
}
@@ -0,0 +1,9 @@
import java.util.List;
public class MyJavaClass {
{
List l = new ArraL<caret>239
}
}