mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 11:00:04 +07:00
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:
@@ -0,0 +1,7 @@
|
||||
// "Replace with 'putIfAbsent' method call" "true"
|
||||
import java.util.Map;
|
||||
class Test {
|
||||
void m1111(Map<String, Integer> map) {
|
||||
int i = !map.cont<caret>ainsKey("asd") ? map.put("asd", 123) : map.get("asd");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user