You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2007/10/18 01:39:43 UTC

svn commit: r585758 - /ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/cache/CacheLineTable.java

Author: doogie
Date: Wed Oct 17 16:39:42 2007
New Revision: 585758

URL: http://svn.apache.org/viewvc?rev=585758&view=rev
Log:
One little changed got merged incorrectly, for generics support.

Modified:
    ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/cache/CacheLineTable.java

Modified: ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/cache/CacheLineTable.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/cache/CacheLineTable.java?rev=585758&r1=585757&r2=585758&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/cache/CacheLineTable.java (original)
+++ ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/cache/CacheLineTable.java Wed Oct 17 16:39:42 2007
@@ -126,7 +126,7 @@
             if (key == null) {
                 value = isNullSet ? nullValue : null;
             } else {
-                value = (CacheLine) memoryTable.get(key);
+                value = memoryTable.get(key);
             }
         }
         if (value == null) {