mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
17 lines
301 B
Java
17 lines
301 B
Java
import java.util.List;
|
|
import java.util.function.Predicate;
|
|
|
|
final class Mapping { }
|
|
|
|
class Main {
|
|
|
|
public <A extends Mapping> List<A> n(Predicate<? super A> filter) {
|
|
return m(filter);
|
|
}
|
|
|
|
private <B extends Mapping> List<B> m( Predicate<? super B> filter) {
|
|
return null;
|
|
}
|
|
|
|
}
|