You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ha...@apache.org on 2011/01/12 11:06:19 UTC

svn commit: r1058041 - /ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java

Author: hansbak
Date: Wed Jan 12 10:06:19 2011
New Revision: 1058041

URL: http://svn.apache.org/viewvc?rev=1058041&view=rev
Log:
service 'performFindItem' got sometimes unwanted output parameter 'listSize' from parent findList service: removed

Modified:
    ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java

Modified: ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java?rev=1058041&r1=1058040&r2=1058041&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java (original)
+++ ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java Wed Jan 12 10:06:19 2011
@@ -735,6 +735,10 @@ public class FindServices {
             result.put("item",item);
         }
         result.remove("listIt");
+        
+        if (result.containsKey("listSize")) {
+            result.remove("listSize");
+        }
         return result;
     }
 }