summaryrefslogtreecommitdiff
path: root/libjava/java/io/FilterInputStream.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-03-23 19:11:19 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-03-23 19:11:19 +0000
commit93b3986a7fd5c8e4de2e4c0479e9c4e3866104b0 (patch)
treeefabea7956e26714f1be960193c07e0ff3930246 /libjava/java/io/FilterInputStream.java
parent4d1da12a32cf622224bb30a3f85131e10c842402 (diff)
BufferedOutputStream.java: Reformated.
2003-03-23 Michael Koch <konqueror@gmx.de> * 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
Diffstat (limited to 'libjava/java/io/FilterInputStream.java')
-rw-r--r--libjava/java/io/FilterInputStream.java35
1 files changed, 0 insertions, 35 deletions
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 <code>InputStream</code> to which method calls
* are redirected
*/
protected InputStream in;
- /*************************************************************************/
-
- /*
- * Constructors
- */
-
/**
* Create a <code>FilterInputStream</code> with the specified subordinate
* <code>InputStream</code>.
@@ -99,12 +86,6 @@ public class FilterInputStream extends InputStream
this.in = in;
}
- /*************************************************************************/
-
- /*
- * Instance Methods
- */
-
/**
* Calls the <code>in.mark(int)</code> method.
*
@@ -115,8 +96,6 @@ public class FilterInputStream extends InputStream
in.mark(readlimit);
}
- /*************************************************************************/
-
/**
* Calls the <code>in.markSupported()</code> method.
*
@@ -128,8 +107,6 @@ public class FilterInputStream extends InputStream
return(in.markSupported());
}
- /*************************************************************************/
-
/**
* Calls the <code>in.reset()</code> method.
*
@@ -140,8 +117,6 @@ public class FilterInputStream extends InputStream
in.reset();
}
- /*************************************************************************/
-
/**
* Calls the <code>in.available()</code> method.
*
@@ -154,8 +129,6 @@ public class FilterInputStream extends InputStream
return(in.available());
}
- /*************************************************************************/
-
/**
* Calls the <code>in.skip(long)</code> method
*
@@ -170,8 +143,6 @@ public class FilterInputStream extends InputStream
return(in.skip(num_bytes));
}
- /*************************************************************************/
-
/**
* Calls the <code>in.read()</code> method
*
@@ -184,8 +155,6 @@ public class FilterInputStream extends InputStream
return(in.read());
}
- /*************************************************************************/
-
/**
* Calls the <code>read(byte[], int, int)</code> overloaded method.
* Note that
@@ -204,8 +173,6 @@ public class FilterInputStream extends InputStream
return(read(buf, 0, buf.length));
}
- /*************************************************************************/
-
/**
* Calls the <code>in.read(byte[], int, int)</code> 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