This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / ClassLibrary / ObjectJava.java
diff --git a/Robust/src/ClassLibrary/ObjectJava.java b/Robust/src/ClassLibrary/ObjectJava.java
deleted file mode 100644 (file)
index 89d8686..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-public class Object {
-    public native int hashCode();
-
-    /* DON'T USE THIS METHOD UNLESS NECESSARY */
-    /* WE WILL DEPRECATE IT AS SOON AS INSTANCEOF WORKS */
-    public native int getType();
-
-    public native int MonitorEnter();
-    public native int MonitorExit();
-
-    public String toString() {
-       return String.valueOf(this);
-    }
-
-    public boolean equals(Object o) {
-       if (o==this)
-           return true;
-       return false;
-    }
-}