mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 04:40:28 +07:00
21 lines
448 B
Java
21 lines
448 B
Java
// "Fix all 'Redundant usage of unmodifiable collection factories' problems in file" "true"
|
|
|
|
import java.util.Collections;
|
|
|
|
class Main {
|
|
|
|
public static void main(String[] args) {
|
|
((Collections.emptyList()));
|
|
|
|
((Collections.emptyList()));
|
|
((Collections.emptySet()));
|
|
((Collections.emptyMap()));
|
|
|
|
((Collections.emptySet()));
|
|
((Collections.emptyMap()));
|
|
|
|
((Collections.emptySet()));
|
|
((Collections.emptyMap()));
|
|
}
|
|
}
|