diff options
author | Michael Koch <konqueror@gmx.de> | 2003-03-18 06:00:25 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-18 06:00:25 +0000 |
commit | f4f5d1d62161cc99ecfc68495d501342aa1e61dc (patch) | |
tree | 9f83602fa5fd87c7741475487fab1b0b3a3e47ab /libjava/java/io/BufferedReader.java | |
parent | 61f1ed592c606d1d2ae272292ad4dbe37d71d78b (diff) | |
download | gcc-f4f5d1d62161cc99ecfc68495d501342aa1e61dc.zip gcc-f4f5d1d62161cc99ecfc68495d501342aa1e61dc.tar.gz gcc-f4f5d1d62161cc99ecfc68495d501342aa1e61dc.tar.bz2 |
BufferedReader.java, [...]: Merged from classpath.
2003-03-18 Michael Koch <konqueror@gmx.de>
* java/io/BufferedReader.java,
java/io/BufferedWriter.java,
java/io/ByteArrayOutputStream.java,
java/io/FileFilter.java,
java/io/FilePermission.java,
java/io/FileReader.java,
java/io/FileWriter.java,
java/io/FilenameFilter.java,
java/io/FilterInputStream.java,
java/io/FilterOutputStream.java,
java/io/FilterReader.java,
java/io/FilterWriter.java,
java/io/ObjectInput.java,
java/io/ObjectInputValidation.java,
java/io/ObjectOutput.java,
java/io/ObjectStreamField.java,
java/io/PipedInputStream.java,
java/io/PipedReader.java,
java/io/PrintWriter.java,
java/io/PushbackReader.java,
java/io/Reader.java,
java/io/SerializablePermission.java,
java/io/StringReader.java,
java/io/Writer.java:
Merged from classpath.
From-SVN: r64525
Diffstat (limited to 'libjava/java/io/BufferedReader.java')
-rw-r--r-- | libjava/java/io/BufferedReader.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libjava/java/io/BufferedReader.java b/libjava/java/io/BufferedReader.java index b4cdb63..a40015b 100644 --- a/libjava/java/io/BufferedReader.java +++ b/libjava/java/io/BufferedReader.java @@ -243,7 +243,8 @@ public class BufferedReader extends Reader * This method returns <code>false</code> then this stream could (but is * not guaranteed to) block on the next read attempt. * - * @return <code>true</code> if this stream is ready to be read, <code>false</code> otherwise + * @return <code>true</code> if this stream is ready to be read, + * <code>false</code> otherwise * * @exception IOException If an error occurs */ @@ -258,7 +259,8 @@ public class BufferedReader extends Reader /** * This method read chars from a stream and stores them into a caller - * supplied buffer. It starts storing the data at index <code>offset</code> into + * supplied buffer. It starts storing the data at index + * <code>offset</code> into * the buffer and attempts to read <code>len</code> chars. This method can * return before reading the number of chars requested. The actual number * of chars read is returned as an int. A -1 is returned to indicate the @@ -473,7 +475,8 @@ public class BufferedReader extends Reader * requested amount. * <p> * This method first discards chars in the buffer, then calls the - * <code>skip</code> method on the underlying stream to skip the remaining chars. + * <code>skip</code> method on the underlying stream to skip the + * remaining chars. * * @param num_chars The requested number of chars to skip * |