mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
16 lines
429 B
Java
16 lines
429 B
Java
// "Replace with 'computeIfAbsent' method 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> list = map.get(key);
|
|
if(list == nul<caret>l) {
|
|
list = new ArrayList<>();
|
|
map.put(key, list);
|
|
System.out.println("Added new!");
|
|
}
|
|
list.add(value);
|
|
}
|
|
} |