mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-31 19:49:23 +07:00
16 lines
321 B
Java
16 lines
321 B
Java
public class Test {
|
|
int f;
|
|
public int j;
|
|
int h;
|
|
|
|
public boolean equals(Object o) {
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
|
|
final Test test = (Test) o;
|
|
return f == test.f && j == test.j && h == test.h;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return 0;
|
|
}
|
|
} |