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