mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
9 lines
219 B
Java
9 lines
219 B
Java
|
|
public class IDEADEV25923 {
|
|
public void foo(Object... params) {}
|
|
|
|
{
|
|
foo(new Object[2]);
|
|
foo(<warning descr="Redundant array creation for calling varargs method">new Object[0]</warning>);
|
|
}
|
|
} |