mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
Fixes false-positive in RedundantUnmodifiableInspection GitOrigin-RevId: 82cd0651ea87f62066a8a299ba3d5b572d617ab0
11 lines
236 B
Java
11 lines
236 B
Java
// "Fix all 'Redundant usage of unmodifiable collection wrappers' problems in file" "false"
|
|
|
|
import java.util.*;
|
|
|
|
class Main {
|
|
|
|
static List<String> test(List<String> list) {
|
|
return Collections.<caret>unmodifiableList(list);
|
|
}
|
|
}
|