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