IDEA-182988 Spurious collection cast on completion Set -> HashSet

This commit is contained in:
Tagir Valeev
2017-12-04 11:58:51 +07:00
parent 5698fed80a
commit f38a359e18
4 changed files with 21 additions and 1 deletions
@@ -0,0 +1,8 @@
import java.util.*;
class Foo {
void test() {
Map<String, String> map = new HashMap<>();
map.computeIfAb<caret>
}
}