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

12 lines
222 B
Java

// "Replace with 'computeIfAbsent()' call" "true"
import java.util.*;
class Test{
int k;
void ensureExists(Map<String, List<String>> map, String key) {
map.computeIfAbsent(key, k1 -> new ArrayList<>());
}
}