OSDN Git Service

* java/io/StringWriter.java (StringWriter(int)): Now public.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Dec 2000 06:08:55 +0000 (06:08 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 15 Dec 2000 06:08:55 +0000 (06:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38271 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/io/StringWriter.java

index 5a165f1..8c50d5b 100644 (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.
index 88b0a6e..9213543 100644 (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);