mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-24 15:51:37 +00:00
8 lines
112 B
Java
Vendored
8 lines
112 B
Java
Vendored
package test;
|
|
|
|
public interface Comparator<T> {
|
|
int compare(T o1, T o2);
|
|
|
|
boolean equals(Object obj);
|
|
}
|