例:
String.format("%s", new int[]{1, 2, 3});
クイックフィックス適用後:
String.format("%s", (Object) new int[]{1, 2, 3});