// "Replace with 'computeIfAbsent' method call" "false" import java.util.Map; public class Main { public void test(Map> map, String key) { List list = map.get(key); if (list == null) { map.put(key, new ArrayList<>()); } System.out.println(list); } }