// "Use 'putIfAbsent' method without lambda" "false" import java.util.Map; class Test { public void test(Map map, String key, String value) { map.computeIfAbsent(key, k -> value); } }