mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 23:51:37 +07:00
Also, new tests GitOrigin-RevId: 5dbb45fc400ba8de0a360e05a4eaf0aee07e0e83
7 lines
183 B
Java
7 lines
183 B
Java
|
|
public enum CheckEnumConstant {
|
|
A(<warning descr="Redundant array creation for calling varargs method">new String[]</warning>{"1", "2"});
|
|
|
|
CheckEnumConstant(String... ss) {
|
|
}
|
|
} |