Author: jleroux
Date: Mon Mar 3 18:11:58 2014
New Revision: 1573646
URL: http://svn.apache.org/r1573646
Log:
While at it (OFBIZ-4953) replaces a deprecated delegator.removeAll()
Modified:
ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java
Modified: ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java?rev=1573646&r1=1573645&r2=1573646&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java (original)
+++ ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java Mon Mar 3
18:11:58 2014
@@ -4297,7 +4297,7 @@ public class OrderServices {
// remove any order item attributes that were set to empty
try {
- delegator.removeAll(toRemove,true);
+ delegator.removeAll(toRemove);
} catch (GenericEntityException e) {
Debug.logError(e, module);
throw new GeneralException(e.getMessage());
|