* java/io/StringWriter.java (StringWriter(int)): Now public.

From-SVN: r38271
This commit is contained in:
Tom Tromey 2000-12-15 06:08:55 +00:00 committed by Tom Tromey
parent f2edab0e90
commit 49c24f00aa
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
2000-12-14 Tom Tromey <tromey@redhat.com>
* java/io/StringWriter.java (StringWriter(int)): Now public.
* java/io/SerializablePermission.java (legal_names): Now private.
* java/lang/Character.java: Updated UnicodeBlock constants.

View File

@ -1,6 +1,6 @@
// StringWriter.java - StringBuffer output stream
/* Copyright (C) 1998, 1999 Free Software Foundation
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
This file is part of libgcj.
@ -17,7 +17,7 @@ package java.io;
/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
* "The Java Language Specification", ISBN 0-201-63451-1
* Status: Complete to 1.1.
* Status: Complete to 1.2.
*/
public class StringWriter extends Writer
@ -25,7 +25,7 @@ public class StringWriter extends Writer
public void close ()
{
// JCL says this does nothing. This seems to violate the Writer
// contract, in that other methods should still throw and
// contract, in that other methods should still throw an
// IOException after a close. Still, we just follow JCL.
}
@ -43,7 +43,7 @@ public class StringWriter extends Writer
this (16);
}
protected StringWriter (int size)
public StringWriter (int size)
{
super ();
buffer = new StringBuffer (size);