mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 13:20:53 +07:00
21 lines
408 B
Java
21 lines
408 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.EMPTY_LIST;
|
|
|
|
Collections.EMPTY_LIST;
|
|
Collections.EMPTY_SET;
|
|
Collections.EMPTY_MAP;
|
|
|
|
Collections.EMPTY_SET;
|
|
Collections.EMPTY_MAP;
|
|
|
|
Collections.EMPTY_SET;
|
|
Collections.EMPTY_MAP;
|
|
}
|
|
}
|