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

7 lines
168 B
Java

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