[kaffe] CVS kaffe (dalibor): Resynced with GNU Classpath

Kaffe CVS cvs-commits at kaffe.org
Sun Jan 11 12:09:02 PST 2004


PatchSet 4320 
Date: 2004/01/11 19:52:21
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath

2004-01-11  Dalibor Topic <robilad at kaffe.org>

        Resynced with GNU Classpath.

        2003-12-26  Michael Koch  <konqueror at gmx.de>

        * java/text/MessageFormat.java
        (MessageFormat): New constructor.

Members: 
	ChangeLog:1.1907->1.1908 
	libraries/javalib/java/text/MessageFormat.java:1.21->1.22 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1907 kaffe/ChangeLog:1.1908
--- kaffe/ChangeLog:1.1907	Sun Jan 11 19:43:48 2004
+++ kaffe/ChangeLog	Sun Jan 11 19:52:21 2004
@@ -2,6 +2,15 @@
 
         Resynced with GNU Classpath.
 
+	2003-12-26  Michael Koch  <konqueror at gmx.de>
+
+        * java/text/MessageFormat.java
+        (MessageFormat): New constructor.
+
+2004-01-11  Dalibor Topic <robilad at kaffe.org>
+
+        Resynced with GNU Classpath.
+
 	2004-01-08  Michael Koch  <konqueror at gmx.de>
 
         * java/text/CollationKey.java
Index: kaffe/libraries/javalib/java/text/MessageFormat.java
diff -u kaffe/libraries/javalib/java/text/MessageFormat.java:1.21 kaffe/libraries/javalib/java/text/MessageFormat.java:1.22
--- kaffe/libraries/javalib/java/text/MessageFormat.java:1.21	Sun Jan 11 17:48:59 2004
+++ kaffe/libraries/javalib/java/text/MessageFormat.java	Sun Jan 11 19:52:23 2004
@@ -552,24 +552,25 @@
 
   /**
    * Creates a new MessageFormat object with
-   * the specified pattern. The locale resource bundle 
-   * is taken as the system default one.
+   * the specified pattern
    *
    * @param pattern The Pattern
    */
-  public MessageFormat (String pattern)
+  public MessageFormat(String pattern)
   {
     this(pattern, Locale.getDefault());
   }
 
   /**
    * Creates a new MessageFormat object with
-   * the specified pattern and Locale context.
+   * the specified pattern
    *
-   * @param pattern the pattern
-   * @param locale Locale environment to use
+   * @param pattern The Pattern
+   * @param locale The Locale to use
+   *
+   * @since 1.4
    */
-  public MessageFormat (String pattern, Locale locale)
+  public MessageFormat(String pattern, Locale locale)
   {
     this.locale = locale;
     applyPattern (pattern);




More information about the kaffe mailing list