Author: jleroux
Date: Thu Jan 23 14:35:20 2014
New Revision: 1560699
URL:
http://svn.apache.org/r1560699Log:
A patch from Justen Walker for "Missing import in FindGeneric.groovy"
https://issues.apache.org/jira/browse/OFBIZ-5504Revision 1560176 introduces a change to FindGeneric.groovy that extracts some logic into UtilMisc. However, this class is not imported in the file and results in a MissingProperty exception.
This patch adds the import statement which resolves this bug.
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=1560699&r1=1560698&r2=1560699&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 Thu Jan 23 14:35:20 2014
@@ -16,6 +16,8 @@
* specific language governing permissions and limitations
* under the License.
*/
+
+import org.ofbiz.base.util.UtilMisc
import org.ofbiz.entity.Delegator;
import org.ofbiz.entity.GenericValue;
import org.ofbiz.entity.GenericEntityException;