Commit 49c24f00 by Tom Tromey Committed by Tom Tromey

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

From-SVN: r38271
parent f2edab0e
2000-12-14 Tom Tromey <tromey@redhat.com> 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/io/SerializablePermission.java (legal_names): Now private.
* java/lang/Character.java: Updated UnicodeBlock constants. * java/lang/Character.java: Updated UnicodeBlock constants.
......
// StringWriter.java - StringBuffer output stream // 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. This file is part of libgcj.
...@@ -17,7 +17,7 @@ package java.io; ...@@ -17,7 +17,7 @@ package java.io;
/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
* "The Java Language Specification", ISBN 0-201-63451-1 * "The Java Language Specification", ISBN 0-201-63451-1
* Status: Complete to 1.1. * Status: Complete to 1.2.
*/ */
public class StringWriter extends Writer public class StringWriter extends Writer
...@@ -25,7 +25,7 @@ public class StringWriter extends Writer ...@@ -25,7 +25,7 @@ public class StringWriter extends Writer
public void close () public void close ()
{ {
// JCL says this does nothing. This seems to violate the Writer // 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. // IOException after a close. Still, we just follow JCL.
} }
...@@ -43,7 +43,7 @@ public class StringWriter extends Writer ...@@ -43,7 +43,7 @@ public class StringWriter extends Writer
this (16); this (16);
} }
protected StringWriter (int size) public StringWriter (int size)
{ {
super (); super ();
buffer = new StringBuffer (size); buffer = new StringBuffer (size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment