mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 088ce28eb3b8cbbce9aa1cfc1b073fef2dab12ce
15 lines
404 B
Java
15 lines
404 B
Java
// "Replace with 'computeIfAbsent()' call" "false"
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class Main {
|
|
public void testMap(Map<String, List<String>> map, String key, String value) {
|
|
List<String> list2 = null;
|
|
List<String> list = map.get(key);
|
|
if(list == nul<caret>l) {
|
|
map.put(key, list2 = new ArrayList<>());
|
|
}
|
|
list.add(value);
|
|
}
|
|
} |