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 2009/11/26 03:30:10 UTC

svn commit: r884373 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntitySelectPlan.java

Author: doogie
Date: Thu Nov 26 02:30:10 2009
New Revision: 884373

URL: http://svn.apache.org/viewvc?rev=884373&view=rev
Log:
Fix build error, caused by bad merge from an old branch.
GenericDelegator was used instead of Delegator.

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntitySelectPlan.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntitySelectPlan.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntitySelectPlan.java?rev=884373&r1=884372&r2=884373&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntitySelectPlan.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/EntitySelectPlan.java Thu Nov 26 02:30:10 2009
@@ -69,7 +69,7 @@
         return delegator.findListIteratorByCondition(dve, whereCondition, havingCondition, null, orderBy, null);
     }
 
-    public List<GenericValue> getAll(final GenericDelegator delegator, final Map<String, ? extends Object> params) throws GenericEntityException {
+    public List<GenericValue> getAll(final Delegator delegator, final Map<String, ? extends Object> params) throws GenericEntityException {
         return TransactionUtil.doTransaction("sql select", new Callable<List<GenericValue>>() {
             public List<GenericValue> call() throws Exception {
                 EntityListIterator it = null;