mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
9 lines
249 B
Java
9 lines
249 B
Java
import java.util.Collection;
|
|
|
|
abstract class NCollections {
|
|
public <T> void foo(Collection<? extends T> coll) {
|
|
bar((Collection)coll);
|
|
}
|
|
|
|
public abstract <T2 extends Object & Comparable<? super T2>> T2 bar(Collection<? extends T2> coll);
|
|
} |