Change tabbing for everything....
[IRC.git] / Robust / src / ClassLibrary / ThreadDSM.java
index 7c7563982be6ff0716b2b3f64c71a74b0b62e97d..4fb2c7b1418a91456d455e191b8e935a060f1aa1 100644 (file)
@@ -1,20 +1,20 @@
 public class Thread {
-    /* Don't allow overriding this method.  If you do, it will break dispatch
-     * because we don't have the type information necessary. */
-    public boolean threadDone;
+  /* Don't allow overriding this method.  If you do, it will break dispatch
+   * because we don't have the type information necessary. */
+  public boolean threadDone;
 
-    public Thread() {
-        threadDone = false;
-    }
+  public Thread() {
+    threadDone = false;
+  }
 
-    public static native void yield();
+  public static native void yield();
 
-    public final native void join();
+  public final native void join();
 
-    public final native void start(int mid);
+  public final native void start(int mid);
 
-    public native static void sleep(long millis);
-    
-    public void run() {
-    }
+  public native static void sleep(long millis);
+
+  public void run() {
+  }
 }