Change tabbing for everything....
[IRC.git] / Robust / src / ClassLibrary / System.java
index 00f129a153b2ccda3f642fe94c75dbd680908ab7..b5f14429639f15322fc13fbdc97006438eefed8e 100644 (file)
@@ -1,20 +1,20 @@
 public class System {
-    public static void printInt(int x) {
-       String s=String.valueOf(x);
-       printString(s);
-    }
+  public static void printInt(int x) {
+    String s=String.valueOf(x);
+    printString(s);
+  }
 
-    public static native long currentTimeMillis();
+  public static native long currentTimeMillis();
 
-    public static native void printString(String s);
+  public static native void printString(String s);
 
-    public static void error() {
-       System.printString("Error (Use Breakpoint on ___System______error method for more information!)\n");
-    }
+  public static void error() {
+    System.printString("Error (Use Breakpoint on ___System______error method for more information!)\n");
+  }
 
-    public static native void exit(int status);
-    
-    public static native void printI(int status);
+  public static native void exit(int status);
 
-    public static native void clearPrefetchCache();
+  public static native void printI(int status);
+
+  public static native void clearPrefetchCache();
 }