BufferedInputStream.java: Fixed @author tag.
2004-10-18 Michael Koch <konqueror@gmx.de> * java/io/BufferedInputStream.java: Fixed @author tag. (read): Simplified expression. (read): Merged javadoc a bit more. (read): Renamed 'remain' to 'totalBytesRead'. * java/io/DataInputStream.java, java/io/DataOutputStream.java, java/io/ObjectInputStream.java, java/io/ObjectOutputStream.java: Reworked modifier order. From-SVN: r89218
This commit is contained in:
parent
ba3ed8d806
commit
0736f19f4e
6 changed files with 28 additions and 17 deletions
|
@ -651,7 +651,7 @@ public class DataInputStream extends FilterInputStream implements DataInput
|
|||
*
|
||||
* @see DataInput#readUTF
|
||||
*/
|
||||
public final static String readUTF (DataInput in) throws IOException
|
||||
public static final String readUTF(DataInput in) throws IOException
|
||||
{
|
||||
final int UTFlen = in.readUnsignedShort ();
|
||||
byte[] buf = new byte [UTFlen];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue