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

7 lines
162 B
Java

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