2004-10-09 Michael Koch <konqueror@gmx.de>
* java/io/CharArrayWriter.java (resize): Removed redundant 'final' modifier. * java/io/DataInputStream.java (readFully): Throw IndexOutOfBoundsException of len < 0. * java/io/FileDescriptor.java, java/io/FileInputStream.java, java/io/FileOutputStream.java, java/io/ObjectOutputStream.java, java/io/ObjectStreamClass.java, java/io/PipedInputStream.java, java/io/RandomAccessFile.java: Reorganized import statements. From-SVN: r88817
This commit is contained in:
committed by
Michael Koch
parent
f507003ab2
commit
0d2e6ffef6
@@ -249,7 +249,7 @@ public class CharArrayWriter extends Writer
|
||||
* application programmers by setting their initial buffer size big
|
||||
* enough to hold everything if possible.
|
||||
*/
|
||||
private final void resize (int len)
|
||||
private void resize (int len)
|
||||
{
|
||||
if (count + len >= buf.length)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user