Change tabbing for everything....
[IRC.git] / Robust / src / ClassLibrary / Thread.java
index 8e790bb087c4b7bbbb6aa2747d0efcdec5c43b5b..50c5580f8f626db089f45c775e4c7eec5d45acbf 100644 (file)
@@ -1,26 +1,27 @@
 public class Thread {
-    private boolean finished;
+  private boolean finished;
 
-    public void start() {
-       nativeCreate();
-    }
+  public void start() {
+    nativeCreate();
+  }
 
-    private static void staticStart(Thread t) {
-       t.run();
-    }
+  private static void staticStart(Thread t) {
+    t.run();
+  }
 
-    public static native void yield();
+  public static native void yield();
 
-    public void join() {
-       nativeJoin();
-    }
+  public void join() {
+    nativeJoin();
+  }
 
-    private native void nativeJoin();
+  private native void nativeJoin();
 
-    public native static void sleep(long millis);
-    
-    public void run() {}
+  public native static void sleep(long millis);
 
-    private native void nativeCreate();
+  public void run() {
+  }
+
+  private native void nativeCreate();
 
 }