mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 15:44:48 +07:00
Also, new tests GitOrigin-RevId: 5dbb45fc400ba8de0a360e05a4eaf0aee07e0e83
10 lines
252 B
Java
10 lines
252 B
Java
// "Remove explicit array creation" "true"
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.Date;
|
|
|
|
public class RedundantArrayForVarargsCall {
|
|
public List<Date> severalValues() {
|
|
return Arrays.asList(new Date(), new Date());
|
|
}
|
|
} |