You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by st...@apache.org on 2005/11/15 14:29:48 UTC

svn commit: r344365 - /webservices/axis2/trunk/java/modules/common/src/org/apache/axis2/i18n/MessageBundle.java

Author: stevel
Date: Tue Nov 15 05:29:42 2005
New Revision: 344365

URL: http://svn.apache.org/viewcvs?rev=344365&view=rev
Log:
eliminate java1.5 compiler warnings

Modified:
    webservices/axis2/trunk/java/modules/common/src/org/apache/axis2/i18n/MessageBundle.java

Modified: webservices/axis2/trunk/java/modules/common/src/org/apache/axis2/i18n/MessageBundle.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/common/src/org/apache/axis2/i18n/MessageBundle.java?rev=344365&r1=344364&r2=344365&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/common/src/org/apache/axis2/i18n/MessageBundle.java (original)
+++ webservices/axis2/trunk/java/modules/common/src/org/apache/axis2/i18n/MessageBundle.java Tue Nov 15 05:29:42 2005
@@ -195,6 +195,6 @@
                     getResourceBundle().getResourceName(), key);
         }
 
-        return MessageFormat.format(msg, array);
+        return MessageFormat.format(msg, (Object[]) array);
     }
 }