Reports arrays that are created specifically to be passed as a varargs parameter.

The quick-fix replaces the array initializer with individual arguments, for example:

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

is replaced with:

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