Files
openide/java/java-tests/testData/inspection/java8MapApi/beforeMergeSimple.java
Tagir Valeev c0f0d3c636 IDEA-174151 'Replace with single Map method' suggests incorrect rewrites to computeIfAbsent
Option added (on by default) to disable warning if side effects are possible.
2017-06-08 17:41:44 +07:00

12 lines
294 B
Java

// "Replace with 'merge' method call" "GENERIC_ERROR_OR_WARNING"
import java.util.Map;
public class Main {
public void testMerge(Map<String, Integer> map, String key) {
if(map.get(key)<caret> == null) {
map.put(key, 1)
} else {
map.put(key, map.get(key) + 1);
}
}
}