mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 05:10:22 +07:00
21 lines
416 B
Java
21 lines
416 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();
|
|
}
|
|
}
|