Files
2026-01-16 13:57:13 +00:00

10 lines
171 B
Java

// "Replace with 'putIfAbsent()' call" "true"
import java.util.Map;
class Test{
Integer m2(Map<String, Integer> map) {
return map.putIfAbsent("asd", 123);
}
}