Author: jonesde
Date: Mon Aug 20 05:04:37 2007
New Revision: 567662
URL:
http://svn.apache.org/viewvc?rev=567662&view=revLog:
Small fix to break when an address is found rather than just at the end of the first iteration, making the loop meaningless
Modified:
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/CheckOutHelper.java
Modified: ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/CheckOutHelper.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/CheckOutHelper.java?rev=567662&r1=567661&r2=567662&view=diff==============================================================================
--- ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/CheckOutHelper.java (original)
+++ ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/CheckOutHelper.java Mon Aug 20 05:04:37 2007
@@ -801,8 +801,8 @@
if (billAddr != null) {
shipAddress = billAddr;
Debug.logInfo("In makeTaxContext no shipping address, but found address with ID [" + shipAddress.get("contactMechId") + "] from payment method.", module);
+ break;
}
- break;
}
}