mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
210 B
Java
9 lines
210 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);
|
|
}
|