From 93b3986a7fd5c8e4de2e4c0479e9c4e3866104b0 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sun, 23 Mar 2003 19:11:19 +0000 Subject: BufferedOutputStream.java: Reformated. 2003-03-23 Michael Koch * java/io/BufferedOutputStream.java: Reformated. * java/io/BufferedReader.java: Reformated. * java/io/ByteArrayOutputStream.java (size): Fixed @see tag. * java/io/CharArrayWriter.java (size): Fixed @see tag. * java/io/DataInput.java: Reformated. * java/io/DataOutput.java: Reformated. * java/io/DataOutputStream.java: Merged copyright years with classpath. * java/io/Externalizable.java: Reformated. * java/io/FileFilter.java: Reformated. * java/io/FileInputStream.java: Merged copyright years with classpath. * java/io/FileOutputStream.java: Merged copyright years with classpath. * java/io/FilePermission.java (FilePermission): Replaced @XXX with FIXME:. * java/io/FileWriter.java: Reformated. * java/io/FilenameFilter.java: Reformated. * java/io/FilterInputStream.java: Reformated. * java/io/FilterOutputStream.java: Reformated. * java/io/FilterReader.java: Reformated. * java/io/FilterWriter.java: Reformated. * java/io/LineNumberInputStream.java (LineNumberInputStream): Replaced @code with HTML tags to make javadoc happy. (getLineNumber): Fixed @return tag. * java/io/ObjectInput.java: Reformated. * java/io/ObjectOutput.java: Reformated. * java/io/ObjectStreamClass.java: Reformated. * java/io/PrintStream.java: Merged copyright years with classpath. * java/io/PushbackReader.java (PushbackReader): Replaced @code with @param. * java/io/SerializablePermission.java: Reformated. * java/io/StreamTokenizer.java (resetSyntax): Fixed @see tag. From-SVN: r64748 --- libjava/java/io/FilterOutputStream.java | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'libjava/java/io/FilterOutputStream.java') 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 OutputStream that this class * redirects its method calls to. */ protected OutputStream out; - /*************************************************************************/ - - /* - * Constructors - */ - /** * This method initializes an instance of FilterOutputStream * to write to the specified subordinate OutputStream. @@ -86,12 +73,6 @@ public class FilterOutputStream extends OutputStream this.out = out; } - /*************************************************************************/ - - /* - * Instance Methods - */ - /** * This method closes the underlying OutputStream. 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 * OutputStream. @@ -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 * OutputStream. 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 write(int) method len * times for all bytes from the array buf starting at index -- cgit v1.2.3