// "Replace iteration with bulk 'List.removeAll' call" "true" import java.util.*; public class Collect { static class Person {} void collectNames(List persons, Collection toRemove){ for (Iterator it = toRemove.iterator(); it.hasNext(); ) persons.remove(it.next()); } }