IDEA-73345 Completion does not propose generic parameters of a method until the header is complete

This commit is contained in:
peter
2011-09-16 14:13:47 +02:00
parent 43eb3e6dc5
commit 367fcd17a8
9 changed files with 81 additions and 17 deletions
@@ -0,0 +1,5 @@
import java.util.ArrayList;
class A {
public static <MyParameter, MySecondParameter> ArrayList<My<caret>>
}
@@ -0,0 +1,5 @@
import java.util.ArrayList;
class A {
public static <MyParameter, MySecondParameter> My<caret>>
}