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