Author: cbegin
Date: Wed Sep  9 14:45:27 2009
New Revision: 812980

URL: http://svn.apache.org/viewvc?rev=812980&view=rev
Log:
committed configuration with old result handler (accidentally committed the new 
config before it was ready)

Modified:
    
ibatis/java/ibatis-3/trunk/ibatis-3-core/src/main/java/org/apache/ibatis/mapping/Configuration.java

Modified: 
ibatis/java/ibatis-3/trunk/ibatis-3-core/src/main/java/org/apache/ibatis/mapping/Configuration.java
URL: 
http://svn.apache.org/viewvc/ibatis/java/ibatis-3/trunk/ibatis-3-core/src/main/java/org/apache/ibatis/mapping/Configuration.java?rev=812980&r1=812979&r2=812980&view=diff
==============================================================================
--- 
ibatis/java/ibatis-3/trunk/ibatis-3-core/src/main/java/org/apache/ibatis/mapping/Configuration.java
 (original)
+++ 
ibatis/java/ibatis-3/trunk/ibatis-3-core/src/main/java/org/apache/ibatis/mapping/Configuration.java
 Wed Sep  9 14:45:27 2009
@@ -173,8 +173,8 @@
   }
 
   public ResultSetHandler newResultSetHandler(Executor executor, 
MappedStatement mappedStatement, int rowOffset, int rowLimit, ParameterHandler 
parameterHandler, ResultHandler resultHandler, BoundSql boundSql) {
-    ResultSetHandler defaultResultSetHandler = new 
DefaultResultSetHandler(executor, mappedStatement, parameterHandler, 
resultHandler, boundSql, rowOffset, rowLimit);
-    ResultSetHandler resultSetHandler =            new 
NewResultSetHandler(executor, mappedStatement, parameterHandler, resultHandler, 
boundSql, rowOffset, rowLimit);
+    ResultSetHandler resultSetHandler = new DefaultResultSetHandler(executor, 
mappedStatement, parameterHandler, resultHandler, boundSql, rowOffset, 
rowLimit);
+    //ResultSetHandler resultSetHandler =            new 
NewResultSetHandler(executor, mappedStatement, parameterHandler, resultHandler, 
boundSql, rowOffset, rowLimit);
     resultSetHandler = (ResultSetHandler) 
interceptorChain.pluginAll(resultSetHandler);
     return resultSetHandler;
   }


Reply via email to