Change tabbing for everything....
[IRC.git] / Robust / src / ClassLibrary / ObjectJavaDSM.java
index c0e9fc42636fadad637bc7afc9790d869ecbee5b..308e81f3a04c7f17fdd8c6c7716d953e9af14045 100644 (file)
@@ -1,30 +1,30 @@
 public class Object {
-    public int cachedCode; //first field has to be a primitive
-    public boolean cachedHash;
-    public Object nextobject; /* Oid */
-    public Object localcopy;
+  public int cachedCode;   //first field has to be a primitive
+  public boolean cachedHash;
+  public Object nextobject;   /* Oid */
+  public Object localcopy;
 
-    public native int nativehashCode();
+  public native int nativehashCode();
 
-    public int hashCode() {
-       if (!cachedHash) {
-           cachedCode=nativehashCode();
-           cachedHash=true;
-       }
-       return cachedCode;
+  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();
+  /* 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 String toString() {
+    return "Object"+hashCode();
+  }
 
-    public boolean equals(Object o) {
-       if (o==this)
-           return true;
-       return false;
-    }
+  public boolean equals(Object o) {
+    if (o==this)
+      return true;
+    return false;
+  }
 }