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

10 lines
176 B
Java

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