Files
openide/java/java-tests/testData/inspection/java8MapApi/beforeComputeIfAbsentUsedKeyMr.java
Tagir Valeev 5bcd2410da Java8CollectionsApiInspection & Java8ReplaceMapGetInspection merged into Java8MapApiInspection; support method references in computeIfAbsent
fix for IDEA-163932 Map.get suggested replacement with Map.getOrDefault is misleading
2016-11-29 13:35:30 +07:00

22 lines
445 B
Java

// "Replace with 'computeIfAbsent' method call" "true"
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class Main {
static class MyItem {
String k;
MyItem(String k) {
this.k = k;
}
}
public MyItem testMap(Map<String, MyItem> map, String token) {
MyItem item = map.get(token);
if(item == nul<caret>l) {
map.put(token, item = new MyItem(token));
}
return item;
}
}