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

Example:

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

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

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