// "Replace with 'computeIfAbsent' method call" "GENERIC_ERROR_OR_WARNING" 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 list = map.get(key); if(list == null) { map.put(key, list = new ArrayList<>()); } list.add(value); } }