mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
// "Fix all 'Stream API call chain can be replaced with loop' problems in file" "true"
|
|
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
import java.util.function.Predicate;
|
|
|
|
import static java.util.stream.Collectors.*;
|
|
|
|
public class Main {
|
|
static final Predicate<String> nonEmpty = s -> s != null && !s.isEmpty();
|
|
|
|
private static long testFunctionInField(List<String> strings) {
|
|
return strings.stream().filter(nonEmpty).cou<caret>nt();
|
|
}
|
|
|
|
private Set<Identifier> test(Set<Identifier> identifiers) {
|
|
return identifiers.stream().filter(isReady(identifiers)).collect(toSet());
|
|
}
|
|
|
|
private Predicate<? super Identifier> isReady(Set<Identifier> identifiers) {
|
|
return null;
|
|
}
|
|
|
|
private static class Identifier {
|
|
}
|
|
|
|
private static long testStreamOfFunctions(List<Predicate<String>> predicates, List<String> strings) {
|
|
return predicates.stream().filter(pred -> pred != null)
|
|
.flatMap(p -> strings.stream().filter(p)).count();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(testStreamOfFunctions(
|
|
Arrays.asList(String::isEmpty, s -> s.length() > 3),
|
|
Arrays.asList("", "a", "abcd", "xyz")
|
|
));
|
|
}
|
|
} |