Author: jleroux
Date: Thu Jan 23 14:37:00 2014
New Revision: 1560700
URL:
http://svn.apache.org/r1560700Log:
"Applied fix from trunk for revision: 1560699"
------------------------------------------------------------------------
r1560699 | jleroux | 2014-01-23 15:35:20 +0100 (jeu. 23 janv. 2014) | 5 lignes
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/branches/release13.07/ (props changed)
ofbiz/branches/release13.07/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
Propchange: ofbiz/branches/release13.07/
------------------------------------------------------------------------------
Merged /ofbiz/trunk:r1560699
Modified: ofbiz/branches/release13.07/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release13.07/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy?rev=1560700&r1=1560699&r2=1560700&view=diff==============================================================================
--- ofbiz/branches/release13.07/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy (original)
+++ ofbiz/branches/release13.07/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy Thu Jan 23 14:37:00 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;