Files
2026-01-16 13:57:13 +00:00

14 lines
250 B
Java

// "Replace with 'computeIfAbsent()' 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<>());
}
}
}