Check in the Object class file
[IRC.git] / Robust / src / ClassLibrary / Object.java
1 public class Object {
2     public native int hashcode();
3
4     public boolean equals(Object o) {
5         if (o==this)
6             return true;
7         return false;
8     }
9 }