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 2008/10/27 13:36:37 UTC

svn commit: r708157 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

Author: jleroux
Date: Mon Oct 27 05:36:36 2008
New Revision: 708157

URL: http://svn.apache.org/viewvc?rev=708157&view=rev
Log:
Fix an error reported by Bilin on dev ML. My fault [] is not equals to null !

Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy?rev=708157&r1=708156&r2=708157&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy Mon Oct 27 05:36:36 2008
@@ -160,7 +160,7 @@
             EntityFindOptions efo = new EntityFindOptions();
             efo.setResultSetType(EntityFindOptions.TYPE_SCROLL_INSENSITIVE);
             EntityListIterator resultEli = null;
-            fieldsToSelect = [];
+            fieldsToSelect = null;
             
             if (groupByFields || functionFields) {
                 fieldsToSelect = FastSet.newInstance();