revert inference for all type arguments for now (IDEA-153970 Code completion suggestions for SmartType are broken when used with generics)

This commit is contained in:
peter
2016-04-05 14:29:08 +02:00
parent d81fe6158e
commit f2ef7b87c1
4 changed files with 23 additions and 2 deletions
@@ -0,0 +1,7 @@
import java.util.*;
class A {
{
Map<String, String> m = new HashMap<>(<caret>);
}
}
@@ -0,0 +1,7 @@
import java.util.*;
class A {
{
Map<String, String> m = new HashM<caret>
}
}