// "Replace iteration with bulk 'Collection.addAll' call" "true" import java.util.ArrayList; import java.util.List; public class Main { public void test(Integer[] arr) { List<Integer> result = new ArrayList<>(); result.add(1); for(Integer i : arr) result.<caret>add(i); } }