You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by rg...@apache.org on 2005/08/18 18:50:49 UTC

svn commit: r233334 - /ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Resources.cs

Author: rgrabowski
Date: Thu Aug 18 09:50:37 2005
New Revision: 233334

URL: http://svn.apache.org/viewcvs?rev=233334&view=rev
Log:
Corrected String.Format typo, {1} instead of {0}, on lines 291, 314, and 337.

Modified:
    ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Resources.cs

Modified: ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Resources.cs
URL: http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Resources.cs?rev=233334&r1=233333&r2=233334&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Resources.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Resources.cs Thu Aug 18 09:50:37 2005
@@ -288,7 +288,7 @@
 			catch(Exception e)
 			{
 				throw new ConfigurationException(
-					string.Format("Unable to load XmlDocument via stream. Cause : {1}", 
+					string.Format("Unable to load XmlDocument via stream. Cause : {0}", 
 					e.Message ) ,e); 
 			}
 
@@ -311,7 +311,7 @@
 			catch(Exception e)
 			{
 				throw new ConfigurationException(
-					string.Format("Unable to load XmlDocument via FileInfo. Cause : {1}", 
+					string.Format("Unable to load XmlDocument via FileInfo. Cause : {0}", 
 					e.Message ) ,e); 
 			}
 
@@ -334,7 +334,7 @@
 			catch(Exception e)
 			{
 				throw new ConfigurationException(
-					string.Format("Unable to load XmlDocument via Uri. Cause : {1}", 
+					string.Format("Unable to load XmlDocument via Uri. Cause : {0}", 
 					e.Message ) ,e); 
 			}