summaryrefslogtreecommitdiff
path: root/libjava/java/io/FilterOutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/io/FilterOutputStream.java')
-rw-r--r--libjava/java/io/FilterOutputStream.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/libjava/java/io/FilterOutputStream.java b/libjava/java/io/FilterOutputStream.java
index 01204b46109..2144213f0e1 100644
--- a/libjava/java/io/FilterOutputStream.java
+++ b/libjava/java/io/FilterOutputStream.java
@@ -56,25 +56,12 @@ package java.io;
*/
public class FilterOutputStream extends OutputStream
{
-
- /*************************************************************************/
-
- /*
- * Instance Variables
- */
-
/**
* This is the subordinate <code>OutputStream</code> that this class
* redirects its method calls to.
*/
protected OutputStream out;
- /*************************************************************************/
-
- /*
- * Constructors
- */
-
/**
* This method initializes an instance of <code>FilterOutputStream</code>
* to write to the specified subordinate <code>OutputStream</code>.
@@ -86,12 +73,6 @@ public class FilterOutputStream extends OutputStream
this.out = out;
}
- /*************************************************************************/
-
- /*
- * Instance Methods
- */
-
/**
* This method closes the underlying <code>OutputStream</code>. Any
* further attempts to write to this stream may throw an exception.
@@ -104,8 +85,6 @@ public class FilterOutputStream extends OutputStream
out.close();
}
- /*************************************************************************/
-
/**
* This method attempt to flush all buffered output to be written to the
* underlying output sink.
@@ -117,8 +96,6 @@ public class FilterOutputStream extends OutputStream
out.flush();
}
- /*************************************************************************/
-
/**
* This method writes a single byte of output to the underlying
* <code>OutputStream</code>.
@@ -132,8 +109,6 @@ public class FilterOutputStream extends OutputStream
out.write(b);
}
- /*************************************************************************/
-
/**
* This method writes all the bytes in the specified array to the underlying
* <code>OutputStream</code>. It does this by calling the three parameter
@@ -151,8 +126,6 @@ public class FilterOutputStream extends OutputStream
write(buf, 0, buf.length);
}
- /*************************************************************************/
-
/**
* This method calls the <code>write(int)</code> method <code>len</code>
* times for all bytes from the array <code>buf</code> starting at index