Java8CollectionsApiInspection & Java8ReplaceMapGetInspection merged into Java8MapApiInspection; support method references in computeIfAbsent

fix for IDEA-163932 Map.get suggested replacement with Map.getOrDefault is misleading
This commit is contained in:
Tagir Valeev
2016-11-29 13:35:30 +07:00
parent 6ced0a3630
commit 5bcd2410da
60 changed files with 751 additions and 796 deletions
@@ -0,0 +1,14 @@
// "Replace with 'putIfAbsent' method call" "true"
import java.util.Map;
class Test{
Integer m2(Map<String, Integer> map) {
if (!map.conta<caret>insKey("asd")) {
return map.put("asd", 123);
} else {
return map.get("asd");
}
}
}