Author: arunpatidar Date: Sat Jul 22 05:39:56 2017 New Revision: 1802655 URL: http://svn.apache.org/viewvc?rev=1802655&view=rev Log: Fixed typo and added types with map object initialisation. (OFBIZ-8462). Thanks Swapnil Mane for reporting.
Modified: ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceServices.java Modified: ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceServices.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceServices.java?rev=1802655&r1=1802654&r2=1802655&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceServices.java (original) +++ ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/invoice/InvoiceServices.java Sat Jul 22 05:39:56 2017 @@ -510,7 +510,7 @@ public class InvoiceServices { if (UtilValidate.isEmpty(shipmentItemBillings)) { // create the ShipmentItemBilling record - Map<String, Object> shipmentItemBillingCtx = new HashMap<>(); + Map<String, Object> shipmentItemBillingCtx = new HashMap<String, Object>(); shipmentItemBillingCtx.put("invoiceId", invoiceId); shipmentItemBillingCtx.put("invoiceItemSeqId", invoiceItemSeqId); shipmentItemBillingCtx.put("shipmentId", currentValue.get("shipmentId"));