mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
New inspection along with Collection.stream().count() -> Collection.size() moved to separate file ReplaceInefficientStreamCountInspection
12 lines
285 B
Java
12 lines
285 B
Java
// "Replace Stream.flatMap().count() with Stream.mapToLong().sum()" "true"
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
public class Main {
|
|
private String s;
|
|
|
|
public Main(List<List<String>> s) {
|
|
long count = s.stream().flatMap(Collection::stream).cou<caret>nt();
|
|
}
|
|
} |