Files
openide/java/java-tests/testData/inspection/streamApiCallChains/beforeCollectorCounting.java
T

10 lines
281 B
Java

// "Replace 'collect(counting())' with 'count()'" "true"
import java.util.List;
import java.util.stream.Collectors;
public class Main {
public long count(List<String> data) {
return data.stream().filter(x -> x.startsWith("xyz")).collect(Collectors.<caret>counting());
}
}