mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
15 lines
568 B
Java
15 lines
568 B
Java
// "Fix all 'Immutable collection creation can be replaced with collection factory call' problems in file" "false"
|
|
import java.util.*;
|
|
|
|
class Main {
|
|
private final List<String> myList;
|
|
private final Map<String, String> myMap;
|
|
private final Set<String> mySet;
|
|
|
|
Main(Collection<String> list, Map<? extends String, ? extends String> map,
|
|
Set<String> set) {
|
|
myList = Collections.un<caret>modifiableList(new ArrayList<>(list));
|
|
myMap = Collections.unmodifiableMap(new HashMap<>(map));
|
|
mySet = Collections.unmodifiableSet(new HashSet<>(set));
|
|
}
|
|
} |