check more i/o code in
[IRC.git] / Robust / src / ClassLibrary / OutputStream.java
index 22fadd1991b9955cf2ae6141d1043ce41fed67a1..eab22f24ae91b093afffde5061d0bbae33fa3204 100644 (file)
@@ -3,17 +3,21 @@ public class OutputStream {
     }
 
     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, 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");
     }
 }