mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 8abf2188d180865951921d5ebfd9bd7bd33bfc6b
9 lines
222 B
Java
9 lines
222 B
Java
// "Replace with 'Set.of()' call" "true"
|
|
import java.util.Collections;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
public class Test {
|
|
public static final Set<String> MY_SET = Set.of("a", "b", "c".toUpperCase());
|
|
}
|