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:
Michael Koch 2004-10-18 13:40:05 +00:00 committed by Michael Koch
parent ba3ed8d806
commit 0736f19f4e
6 changed files with 28 additions and 17 deletions

View file

@ -893,7 +893,7 @@ public class ObjectOutputStream extends OutputStream
*
* XXX: finish up comments
*/
public static abstract class PutField
public abstract static class PutField
{
public abstract void put (String name, boolean value);
public abstract void put (String name, byte value);
@ -1552,7 +1552,7 @@ public class ObjectOutputStream extends OutputStream
}
// this value comes from 1.2 spec, but is used in 1.1 as well
private final static int BUFFER_SIZE = 1024;
private static final int BUFFER_SIZE = 1024;
private static int defaultProtocolVersion = PROTOCOL_VERSION_2;