Files
openide/java/java-tests/testData/inspection/java8MapApi/afterComputeIfAbsentUsedKey.java
T
Aleksey Dobryninandintellij-monorepo-bot f97829c4d9 [java, fix, test] move an internal test into a separate test.
reason: an additional annotation @RunWith(Enclosed.class) override @RunWith(Parameterized.class)
result: some tests are not running

GitOrigin-RevId: 5979ee327eb23dd6ded7c8e2597ffd6503acfa23
2023-11-13 17:41:26 +00:00

21 lines
456 B
Java

// "Replace with 'computeIfAbsent' method call" "GENERIC_ERROR_OR_WARNING"
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class Main {
static class MyItem {
String k;
int i;
MyItem(String k, int i) {
this.k = k;
this.i = i;
}
}
public MyItem testMap(Map<String, MyItem> map, String token) {
MyItem item = map.computeIfAbsent(token, t -> new MyItem(t, 1));
return item;
}
}