diff options
author | Michael Koch <konqueror@gmx.de> | 2004-04-20 11:37:41 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-04-20 11:37:41 +0000 |
commit | 9f714d5eec05594569dd89920353272606622d8a (patch) | |
tree | 009937b32fd6b3926fccb11ba8049b174994633b /libjava/java/io/RandomAccessFile.java | |
parent | 7aebacee26b0b9f43a246e94c91ca99a150700b0 (diff) | |
download | gcc-9f714d5eec05594569dd89920353272606622d8a.zip gcc-9f714d5eec05594569dd89920353272606622d8a.tar.gz gcc-9f714d5eec05594569dd89920353272606622d8a.tar.bz2 |
BufferedWriter.java, [...]: Fixed javadocs all over, rename arguments to match javadocs, fixed coding style.
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/io/BufferedWriter.java,
java/io/ByteArrayInputStream.java,
java/io/CharArrayWriter.java,
java/io/DataInput.java,
java/io/DataInputStream.java,
java/io/File.java,
java/io/FilterInputStream.java,
java/io/InputStream.java,
java/io/InputStreamReader.java,
java/io/ObjectInputStream.java,
java/io/ObjectStreamClass.java,
java/io/PipedInputStream.java,
java/io/PipedReader.java,
java/io/PushbackInputStream.java,
java/io/PushbackReader.java,
java/io/RandomAccessFile.java,
java/io/SerializablePermission.java,
java/io/StreamTokenizer.java,
java/io/StringWriter.java,
java/io/WriteAbortedException.java,
java/io/Writer.java:
Fixed javadocs all over, rename arguments to match javadocs,
fixed coding style.
From-SVN: r80897
Diffstat (limited to 'libjava/java/io/RandomAccessFile.java')
-rw-r--r-- | libjava/java/io/RandomAccessFile.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/io/RandomAccessFile.java b/libjava/java/io/RandomAccessFile.java index f79c624..c20549c 100644 --- a/libjava/java/io/RandomAccessFile.java +++ b/libjava/java/io/RandomAccessFile.java @@ -318,12 +318,12 @@ public class RandomAccessFile implements DataOutput, DataInput * significant byte first (i.e., "big endian") regardless of the native * host byte ordering. * <p> - * As an example, if <code>byte1</code> and code{byte2</code> represent + * As an example, if <code>byte1</code> and <code>byte2</code> represent * the first * and second byte read from the stream respectively, they will be * transformed to a <code>char</code> in the following manner: * <p> - * <code>(char)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF)</code> + * <code>(char)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF)</code> * <p> * This method can read a <code>char</code> written by an object * implementing the @@ -539,12 +539,12 @@ public class RandomAccessFile implements DataOutput, DataInput * significant byte first (i.e., "big endian") regardless of the native * host byte ordering. * <p> - * As an example, if <code>byte1</code> and code{byte2</code> + * As an example, if <code>byte1</code> and <code>byte2</code> * represent the first * and second byte read from the stream respectively, they will be * transformed to a <code>short</code> in the following manner: * <p> - * <code>(short)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF)</code> + * <code>(short)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF)</code> * <p> * The value returned is in the range of -32768 to 32767. * <p> |