Files
2026-01-16 13:57:13 +00:00

21 lines
451 B
Java

// "Replace with 'computeIfAbsent()' 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;
}
}