mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +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);
|
|
}
|