You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by gb...@apache.org on 2006/03/05 13:28:20 UTC

svn commit: r383311 - /ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/TypesResolver/TypeResolver.cs

Author: gbayon
Date: Sun Mar  5 04:28:19 2006
New Revision: 383311

URL: http://svn.apache.org/viewcvs?rev=383311&view=rev
Log:
- Cosmetic change

Modified:
    ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/TypesResolver/TypeResolver.cs

Modified: ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/TypesResolver/TypeResolver.cs
URL: http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/TypesResolver/TypeResolver.cs?rev=383311&r1=383310&r2=383311&view=diff
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/TypesResolver/TypeResolver.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/TypesResolver/TypeResolver.cs Sun Mar  5 04:28:19 2006
@@ -1,7 +1,7 @@
 
 #region Apache Notice
 /*****************************************************************************
- * $Revision$
+ * $Revision: 382490 $
  * $LastChangedDate$
  * $LastChangedBy$
  * 
@@ -226,7 +226,7 @@
 			#region Methods
 			private void SplitTypeAndAssemblyNames (string originalTypeName) 
 			{
-                if (originalTypeName.Contains(TypeAssemblyInfo.NULLABLE_TYPE))
+                if (originalTypeName.StartsWith(TypeAssemblyInfo.NULLABLE_TYPE))
                 {
                     _isNullable = true;
                     int typeAssemblyIndex = originalTypeName.IndexOf(TypeAssemblyInfo.NULLABLE_TYPE_ASSEMBLY_SEPARATOR);