mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
396 B
Java
14 lines
396 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 {
|
|
public void testMap(Map<String, List<String>> map, String key, String value) {
|
|
List<String> list = map.get(key);
|
|
if(list == nul<caret>l) {
|
|
map.put(key, list = new ArrayList<>());
|
|
}
|
|
list.add(value);
|
|
}
|
|
} |