mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
14 lines
288 B
Java
14 lines
288 B
Java
// "Remove explicit array creation" "true"
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.Date;
|
|
|
|
public class RedundantArrayForVarargsCall {
|
|
{
|
|
try {
|
|
String.class.getConstructor(String.class);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |