completion: don't ignore Object substitution (IDEA-177259)

This commit is contained in:
Anna Kozlova
2017-08-19 13:58:26 +02:00
parent 2726465602
commit 90148e6425
4 changed files with 12 additions and 1 deletions
@@ -0,0 +1,5 @@
import java.util.*;
public class SomeClass {
Map<Integer, Object> m = new HashMap<Integer, Object>(<caret>);
}
@@ -0,0 +1,5 @@
import java.util.*;
public class SomeClass {
Map<Integer, Object> m = new HashMap<<caret>>();
}