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

12 lines
374 B
Java

// "Replace with 'computeIfAbsent()' call" "true"
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class Main {
public void testMap(Map<String, List<String>> map, String key, String value) {
List<String> list = map.computeIfAbsent(key, k -> new /*create new ArrayList*/ ArrayList<>());
// and put it
list.add(value);
}
}