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;
     }
 }


Reply via email to