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 ke...@apache.org on 2008/06/24 10:33:42 UTC

svn commit: r671060 - /webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java

Author: keithc
Date: Tue Jun 24 01:33:41 2008
New Revision: 671060

URL: http://svn.apache.org/viewvc?rev=671060&view=rev
Log:
Fixing a spelling mistake in the error msg

Modified:
    webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java

Modified: webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java?rev=671060&r1=671059&r2=671060&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java (original)
+++ webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java Tue Jun 24 01:33:41 2008
@@ -576,7 +576,7 @@
         if (source.length() >= 10) {
             //first 10 numbers must give the year
             if ((source.charAt(4) != '-') || (source.charAt(7) != '-')){
-                throw new RuntimeException("invalid date format (" + source + ") wiht out - s at correct place ");
+                throw new RuntimeException("invalid date format (" + source + ") with out - s at correct place ");
             }
             year = Integer.parseInt(source.substring(0,4));
             month = Integer.parseInt(source.substring(5,7));
@@ -889,7 +889,7 @@
                     (source.charAt(10) != 'T') ||
                     (source.charAt(13) != ':') ||
                     (source.charAt(16) != ':')) {
-                throw new RuntimeException("invalid date format (" + source + ") wiht out - s at correct place ");
+                throw new RuntimeException("invalid date format (" + source + ") with out - s at correct place ");
             }
             year = Integer.parseInt(source.substring(0, 4));
             month = Integer.parseInt(source.substring(5, 7));