2004-09-30 Tom Tromey <tromey@redhat.com>
authorTom Tromey <tromey@redhat.com>
Thu, 30 Sep 2004 18:27:53 +0000 (18:27 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Thu, 30 Sep 2004 18:27:53 +0000 (18:27 +0000)
i * java/text/MessageFormat.java (Field): Constructor now
protected.

From-SVN: r88346

libjava/ChangeLog
libjava/java/text/MessageFormat.java

index f01b9d0f7e99c31b4b31d21d20f2baa9eb863b83..9f47b34ee9b1be17774b7960bbaa23d606a93d86 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-30  Tom Tromey  <tromey@redhat.com>
+
+i      * java/text/MessageFormat.java (Field): Constructor now
+       protected.
+
 2004-09-30  Tom Tromey  <tromey@redhat.com>
 
        * javax/crypto/MacSpi.java: Fixed typo.
index b123412554d6aa37d6c61473ada7342c985349e6..1c681795fa1af68fd9a6a6c33980f9071d8460a5 100644 (file)
@@ -165,7 +165,7 @@ public class MessageFormat extends Format
       super("");
     }
     
-    private Field(String s)
+    protected Field(String s)
     {
       super(s);
     }