Files
openide/java/java-tests/testData/inspection/java8MapApi/beforeIfCompute.java
T
2016-11-29 13:35:30 +07:00

14 lines
255 B
Java

// "Replace with 'computeIfAbsent' method call" "true"
import java.util.*;
class Test{
int k;
void ensureExists(Map<String, List<String>> map, String key) {
if (!map.conta<caret>insKey(key)) {
map.put(key, new ArrayList<>());
}
}
}