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/FilterInputStream.java | 35 ---------------------------------- 1 file changed, 35 deletions(-) (limited to 'libjava/java/io/FilterInputStream.java') diff --git a/libjava/java/io/FilterInputStream.java b/libjava/java/io/FilterInputStream.java index 80cbd927375..fe45d33e368 100644 --- a/libjava/java/io/FilterInputStream.java +++ b/libjava/java/io/FilterInputStream.java @@ -69,25 +69,12 @@ package java.io; */ public class FilterInputStream extends InputStream { - - /*************************************************************************/ - - /* - * Instance Variables - */ - /** * This is the subordinate InputStream to which method calls * are redirected */ protected InputStream in; - /*************************************************************************/ - - /* - * Constructors - */ - /** * Create a FilterInputStream with the specified subordinate * InputStream. @@ -99,12 +86,6 @@ public class FilterInputStream extends InputStream this.in = in; } - /*************************************************************************/ - - /* - * Instance Methods - */ - /** * Calls the in.mark(int) method. * @@ -115,8 +96,6 @@ public class FilterInputStream extends InputStream in.mark(readlimit); } - /*************************************************************************/ - /** * Calls the in.markSupported() method. * @@ -128,8 +107,6 @@ public class FilterInputStream extends InputStream return(in.markSupported()); } - /*************************************************************************/ - /** * Calls the in.reset() method. * @@ -140,8 +117,6 @@ public class FilterInputStream extends InputStream in.reset(); } - /*************************************************************************/ - /** * Calls the in.available() method. * @@ -154,8 +129,6 @@ public class FilterInputStream extends InputStream return(in.available()); } - /*************************************************************************/ - /** * Calls the in.skip(long) method * @@ -170,8 +143,6 @@ public class FilterInputStream extends InputStream return(in.skip(num_bytes)); } - /*************************************************************************/ - /** * Calls the in.read() method * @@ -184,8 +155,6 @@ public class FilterInputStream extends InputStream return(in.read()); } - /*************************************************************************/ - /** * Calls the read(byte[], int, int) overloaded method. * Note that @@ -204,8 +173,6 @@ public class FilterInputStream extends InputStream return(read(buf, 0, buf.length)); } - /*************************************************************************/ - /** * Calls the in.read(byte[], int, int) method. * @@ -222,8 +189,6 @@ public class FilterInputStream extends InputStream return(in.read(buf, offset, len)); } - /*************************************************************************/ - /** * This method closes the input stream by closing the input stream that * this object is filtering. Future attempts to access this stream may -- cgit v1.2.3