Author: gbayon
Date: Sun Jan 21 11:38:42 2007
New Revision: 498433
URL: http://svn.apache.org/viewvc?view=rev&rev=498433
Log:
- Removed commented code
Modified:
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/MappedStatements/ResultStrategy/AutoMapStrategy.cs
Modified:
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/MappedStatements/ResultStrategy/AutoMapStrategy.cs
URL:
http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.DataMapper/MappedStatements/ResultStrategy/AutoMapStrategy.cs?view=diff&rev=498433&r1=498432&r2=498433
==============================================================================
---
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/MappedStatements/ResultStrategy/AutoMapStrategy.cs
(original)
+++
ibatis/trunk/cs/mapper/IBatisNet.DataMapper/MappedStatements/ResultStrategy/AutoMapStrategy.cs
Sun Jan 21 11:38:42 2007
@@ -24,8 +24,6 @@
#endregion
using System.Data;
-using System.Reflection;
-using IBatisNet.Common.Logging;
using IBatisNet.DataMapper.Configuration.ResultMapping;
using IBatisNet.DataMapper.Scope;
@@ -36,8 +34,6 @@
/// </summary>
public sealed class AutoMapStrategy : IResultStrategy
{
- private static readonly ILog _logger = LogManager.GetLogger(
MethodBase.GetCurrentMethod().DeclaringType );
-
/// <summary>
/// Auto-map the reader to the result object.
/// </summary>
@@ -59,13 +55,6 @@
ref resultObject);
resultMap.Properties.AddRange(properties);
-
- /*
- if (_logger.IsDebugEnabled)
- {
- _logger.Debug("The Remap Result");
- }
- */
}
else
{
@@ -86,12 +75,6 @@
}
}
- /*
- if (_logger.IsDebugEnabled)
- {
- _logger.Debug("The AutoMap Reader");
- }
- */
}
return resultMap;