Files
openide/java/java-tests/testData/inspection/java8MapApi/afterConditional.java
T
2016-11-29 13:35:30 +07:00

7 lines
173 B
Java

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