diff options
author | Michael Koch <konqueror@gmx.de> | 2003-03-24 08:27:28 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-24 08:27:28 +0000 |
commit | ffe4ebba87d78d4da242adb6e95d2976bd796d91 (patch) | |
tree | de2889adb98c833d19e91db64f8b848c8c32f46a /libjava/java/io/DataInputStream.java | |
parent | 228115acf439b32d93b626c343d13cd3eefa5dab (diff) | |
download | gcc-ffe4ebba87d78d4da242adb6e95d2976bd796d91.zip gcc-ffe4ebba87d78d4da242adb6e95d2976bd796d91.tar.gz gcc-ffe4ebba87d78d4da242adb6e95d2976bd796d91.tar.bz2 |
DataInputStream.java (): Wrapped documentation line.
2003-03-24 Michael Koch <konqueror@gmx.de>
* java/io/DataInputStream.java
(): Wrapped documentation line.
(): Fixed @return tag.
* java/io/DataOutputStream.java
(written): Moved to top of class.
(all methods): Merged documentation from classpath.
* java/io/File.java:
Merged copyright year with classpath.
* java/io/FileInputStream.java
(all methods): Merged documentation from classpath.
* java/io/LineNumberReader.java
(getLineNumber): Fixed @return tag.
* java/io/ObjectInputStream.java.
Reformatted.
* java/io/ObjectOutputStream.java:
Reformatted, fixed some @see tags.
* java/io/OutputStreamWriter.java:
Deleted empty line.
* java/io/Writer.java:
Reformatted.
From-SVN: r64780
Diffstat (limited to 'libjava/java/io/DataInputStream.java')
-rw-r--r-- | libjava/java/io/DataInputStream.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libjava/java/io/DataInputStream.java b/libjava/java/io/DataInputStream.java index 626da90..5f8c541 100644 --- a/libjava/java/io/DataInputStream.java +++ b/libjava/java/io/DataInputStream.java @@ -596,7 +596,8 @@ public class DataInputStream extends FilterInputStream implements DataInput * character encoding, then they would be converted to a Java * <code>char</code> like so: * <p> - * <code>(char)(((byte1 & 0x0F) << 12) | ((byte2 & 0x3F) << 6) | (byte3 & 0x3F))</code> + * <code>(char)(((byte1 & 0x0F) << 12) | ((byte2 & 0x3F) << 6) | + * (byte3 & 0x3F))</code> * <p> * Note that all characters are encoded in the method that requires * the fewest number of bytes with the exception of the character @@ -608,7 +609,7 @@ public class DataInputStream extends FilterInputStream implements DataInput * This method can read data that was written by an object implementing the * <code>writeUTF()</code> method in <code>DataOutput</code> * - * @returns The <code>String</code> read + * @return The <code>String</code> read * * @exception EOFException If end of file is reached before reading * the String |