Re: svn commit: r1345660 - /ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductSummary.groovy

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

Re: svn commit: r1345660 - /ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductSummary.groovy

Adam Heath-2
On 06/03/2012 07:08 AM, [hidden email] wrote:

> Author: jleroux
> Date: Sun Jun  3 12:08:00 2012
> New Revision: 1345660
>
> URL: http://svn.apache.org/viewvc?rev=1345660&view=rev
> Log:
> Fixes "QuickAdd screen rendering exception in ecommerce" https://issues.apache.org/jira/browse/OFBIZ-4882
>
> It was only
> import javolution.util.FastList;
> missing
>
> Modified:
>      ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductSummary.groovy
>
> Modified: ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductSummary.groovy
> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductSummary.groovy?rev=1345660&r1=1345659&r2=1345660&view=diff
> ==============================================================================
> --- ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductSummary.groovy (original)
> +++ ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/entry/catalog/ProductSummary.groovy Sun Jun  3 12:08:00 2012
> @@ -33,6 +33,7 @@ import org.ofbiz.product.store.*;
>   import org.ofbiz.order.shoppingcart.*;
>   import org.ofbiz.product.product.ProductWorker;
>   import java.text.NumberFormat;
> +import javolution.util.FastList;

Really?  What happened to using []?


.