display type arguments in java completion suggestions (IDEA-143204)

This commit is contained in:
peter
2015-09-23 18:08:04 +02:00
parent ced18f2839
commit c57fa18eaa
6 changed files with 13 additions and 9 deletions
@@ -1,5 +1,5 @@
import java.util.HashMap;
import java.util.*;
public class A {
private HashMap<String, String> m = new HashMap<St<caret>>()
private HashMap<String, List<String>> m = new HashMap<St<caret>>()
}
@@ -1,5 +1,5 @@
import java.util.HashMap;
import java.util.*;
public class A {
private HashMap<String, String> m = new HashMap<String, String>(<caret>)
private HashMap<String, List<String>> m = new HashMap<String, List<String>>(<caret>)
}