mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
display type arguments in java completion suggestions (IDEA-143204)
This commit is contained in:
@@ -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>>()
|
||||
}
|
||||
|
||||
+2
-2
@@ -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>)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user