mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
9 lines
211 B
Java
9 lines
211 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);
|
|
}
|