diff options
Diffstat (limited to 'libjava/java/io/DataInput.java')
-rw-r--r-- | libjava/java/io/DataInput.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/io/DataInput.java b/libjava/java/io/DataInput.java index 2d92006..52cd246 100644 --- a/libjava/java/io/DataInput.java +++ b/libjava/java/io/DataInput.java @@ -360,7 +360,7 @@ public interface DataInput * patterns which indicate a two byte character encoding, then they would be * converted to a Java <code>char</code> like so: * <p> - * <code>(char)(((byte1 & 0x1F) << 6) + (byte2 & 0x3F))</code> + * <code>(char)(((byte1 & 0x1F) << 6) + (byte2 & 0x3F))</code> * <p> * If the first byte has a 1110 as its high order bits, then the * character consists of three bytes. The bits that make up the character @@ -375,19 +375,19 @@ public interface DataInput * then they would be converted to a Java <code>char</code> like so: * * <code> - * (char)(((byte1 & 0x0F) << 12) + ((byte2 & 0x3F) + (byte3 & 0x3F)) + * (char)(((byte1 & 0x0F) << 12) + ((byte2 & 0x3F) + (byte3 & 0x3F)) * </code> * * Note that all characters are encoded in the method that requires the * fewest number of bytes with the exception of the character with the - * value of <code>\<llll>u0000</code> which is encoded as two bytes. + * value of <code>\<llll>u0000</code> which is encoded as two bytes. * This is a modification of the UTF standard used to prevent C language * style <code>NUL</code> values from appearing in the byte stream. * <p> * 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 |