You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2012/06/03 14:08:00 UTC

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

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;
 
 //either optProduct, optProductId or productId must be specified
 product = request.getAttribute("optProduct");



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

Posted by Adam Heath <do...@brainfood.com>.
On 06/03/2012 07:08 AM, jleroux@apache.org 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 []?


.