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

10 lines
248 B
Java

// "Replace with 'computeIfAbsent()' call" "true"
import java.util.Map;
public class Main {
public void test(Map<String, List<String>> map, String key) {
map.computeIfAbsent(key, k -> new ArrayList<>());
System.out.println(map);
}
}