This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / ClassLibrary / Object.java
diff --git a/Robust/src/ClassLibrary/Object.java b/Robust/src/ClassLibrary/Object.java
deleted file mode 100644 (file)
index f2d05d2..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-public class Object {
-  public native int nativehashCode();
-  private int cachedCode;  //first field has to be a primitive
-  private boolean cachedHash;
-
-  /* DO NOT USE ANY OF THESE - THEY ARE FOR IMPLEMENTING TAGS */
-  private Object tags;
-
-  public int hashCode() {
-    if (!cachedHash) {
-      cachedCode=nativehashCode();
-      cachedHash=true;
-    }
-    return cachedCode;
-  }
-
-  /* DON'T USE THIS METHOD UNLESS NECESSARY */
-  /* WE WILL DEPRECATE IT AS SOON AS INSTANCEOF WORKS */
-  public native int getType();
-
-  public String toString() {
-    return "Object"+hashCode();
-  }
-
-  public boolean equals(Object o) {
-    if (o==this)
-      return true;
-    return false;
-  }
-}