// "Use 'putIfAbsent' method without lambda" "false" import java.util.Map; class Test { public void test(Map map, String key) { map.computeIfAbsent(key, (/*comment in param*/k) /*comment in arrow*/-> (/*comment in parens*/"empty"+key)); } }