// "Use 'computeIfAbsent' method with functional argument" "false" import java.util.*; class Test { public void test(Map> map, String key) { map.putIfAbsent(key, createList()); map.get(key).add(0); } private native List createList(); }