mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
9 lines
172 B
Java
Vendored
9 lines
172 B
Java
Vendored
public class X {
|
|
public boolean equals(Object object) {
|
|
return super.equals(object);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return super.hashCode();
|
|
}
|
|
} |