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")