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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

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