mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
testdata for IDEA-132725
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import java.util.*;
|
||||
import java.util.function.Predicate;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import static java.util.stream.Collectors.toList;
|
||||
|
||||
|
||||
abstract class Example {
|
||||
interface PriceList {}
|
||||
|
||||
List<PriceList> findByTags(List<String> tags, Date date) {
|
||||
return copyOf(findMatching(tags).stream().filter(isActive(date)).collect(toList()));
|
||||
}
|
||||
|
||||
protected abstract Predicate<PriceList> isActive(Date date);
|
||||
protected abstract List<PriceList> findMatching(List<String> tags);
|
||||
protected abstract <E> List<E> copyOf(Collection<? extends E> e);
|
||||
}
|
||||
Reference in New Issue
Block a user