Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/useBulkOperation/beforeAddAllWhile.java
Bas Leijdekkers ea834397dc show method calls with () in "Replace with bulk method call" inspection messages
GitOrigin-RevId: cc40c33ea4729b0faaecefe3e67287ece06090bd
2022-01-31 10:13:13 +00:00

15 lines
356 B
Java

// "Replace iteration with bulk 'Collection.addAll()' call" "true"
import java.util.*;
public class Collect {
static class Person {}
void collectNames(List<Person> persons, Collection<Person> toAdd){
Iterator<Person> it = toAdd.iterator();
while (it.hasNext()) {
Person person = it.next();
persons<caret>.add(person);
}
}
}