Author: lmeadors
Date: Mon Sep  5 07:55:35 2005
New Revision: 278762

URL: http://svn.apache.org/viewcvs?rev=278762&view=rev
Log:
IBATIS-174

Modified:
    
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/sqlmap/engine/cache/CacheModel.java

Modified: 
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/sqlmap/engine/cache/CacheModel.java
URL: 
http://svn.apache.org/viewcvs/ibatis/trunk/java/mapper/mapper2/src/com/ibatis/sqlmap/engine/cache/CacheModel.java?rev=278762&r1=278761&r2=278762&view=diff
==============================================================================
--- 
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/sqlmap/engine/cache/CacheModel.java
 (original)
+++ 
ibatis/trunk/java/mapper/mapper2/src/com/ibatis/sqlmap/engine/cache/CacheModel.java
 Mon Sep  5 07:55:35 2005
@@ -24,13 +24,13 @@
 import java.util.*;
 
 /**
- * 
+ *
  */
 public class CacheModel implements ExecuteListener {
 
   private static final Map lockMap = new HashMap();
   /**
-   * This is used to represent null objects that are returned from the cache 
so 
+   * This is used to represent null objects that are returned from the cache so
    * that they can be cached, too.
    */
   public static final Object NULL_OBJECT = new Object();
@@ -286,7 +286,7 @@
       }
     }
 
-    return value == NULL_OBJECT ? null : value;
+    return value;
 
   }
 


Reply via email to