报告专门创建以作为 vararg 形参传递的数组。

示例:

Arrays.asList(new String[]{"Hello", "world"})

该快速修复会将数组初始值设定项替换为单个实参:

Arrays.asList("Hello", "world")