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

7 lines
157 B
Java

// "Replace with 'putIfAbsent()' call" "true"
import java.util.Map;
class Test {
void m1(Map<String, Integer> map) {
map.putIfAbsent("ads", i);
}
}