mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
16 lines
365 B
Java
16 lines
365 B
Java
import java.util.Comparator;
|
|
|
|
public class Main2 {
|
|
static class OfRef<T> {
|
|
public OfRef() {
|
|
this((Comparator<? super T>) naturalOrder());
|
|
}
|
|
|
|
public OfRef(Comparator<? super T> comparator) {
|
|
}
|
|
static <K extends Comparable<? super K>> Comparator<K> naturalOrder() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|