changes: now Inference engine works fine with the EyeTracking benchmark.
[IRC.git] / Robust / src / ClassLibrary / BufferedOutputStream.java
index 8a36bde25bf550f628a5b72b7290a5a5adaf3563..f9a0d1f7550503e65286ae568538b648fa4e85ed 100644 (file)
@@ -1,19 +1,19 @@
 public class BufferedOutputStream extends OutputStream {
-    OutputStream o;
+  OutputStream o;
 
-    public BufferedOutputStream(OutputStream o) {
-       this.o=o;
-    }
+  public BufferedOutputStream(OutputStream o) {
+    this.o=o;
+  }
 
-    public void write(byte []b, int off, int len) {
-       o.write(b, off, len);
-    }
+  public void write(byte [] b, int off, int len) {
+    o.write(b, off, len);
+  }
 
-    public void flush() {
-       o.flush();
-    }
+  public void flush() {
+    o.flush();
+  }
 
-    public void close() {
-       o.close();
-    }
+  public void close() {
+    o.close();
+  }
 }