Change tabbing for everything....
[IRC.git] / Robust / src / ClassLibrary / OutputStream.java
index eab22f24ae91b093afffde5061d0bbae33fa3204..eee7fce667c38e512032e9d612d93edc16a62dd0 100644 (file)
@@ -1,23 +1,23 @@
 public class OutputStream {
-    public OutputStream() {
-    }
+  public OutputStream() {
+  }
 
-    public void write(int ch) {
-       System.printString("Called unimplemented write(int)\n");
-    }
+  public void write(int ch) {
+    System.printString("Called unimplemented write(int)\n");
+  }
 
-    public void write(byte[] b) {
-       System.printString("Called unimplemented write(byte[])\n");
-    }
+  public void write(byte[] b) {
+    System.printString("Called unimplemented write(byte[])\n");
+  }
 
-    public void write(byte[] b, int off, int len) {
-       System.printString("Called unimplemented write(byte[],int,int)\n");
-    }
+  public void write(byte[] b, int off, int len) {
+    System.printString("Called unimplemented write(byte[],int,int)\n");
+  }
 
-    public void flush() {
-    }
-    
-    public void close() {
-       System.printString("Called unimplemented close()\n");
-    }
+  public void flush() {
+  }
+
+  public void close() {
+    System.printString("Called unimplemented close()\n");
+  }
 }