mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
9 lines
212 B
Java
9 lines
212 B
Java
// "Replace with 'List.of()' call" "true"
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
public class Test {
|
|
public static final List<Number> EVEN = List.of(0, 2, 4, 6, 8);
|
|
}
|