mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 088ce28eb3b8cbbce9aa1cfc1b073fef2dab12ce
14 lines
324 B
Java
14 lines
324 B
Java
// "Replace with 'compute()' call" "false"
|
|
import java.util.Map;
|
|
|
|
public class Main {
|
|
|
|
public Integer sum(Integer a, Integer b) {
|
|
return a + b;
|
|
}
|
|
|
|
public void testCompute(Map<String, Integer> map, String key) {
|
|
Integer value = map.get(key);
|
|
sum(6, map.pu<caret>t(key, value == null ? 0 : value + 1));
|
|
}
|
|
} |