svn commit: r1562106 - in /ofbiz/branches/release12.04: ./ framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

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

svn commit: r1562106 - in /ofbiz/branches/release12.04: ./ framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

jleroux@apache.org
Author: jleroux
Date: Tue Jan 28 16:20:48 2014
New Revision: 1562106

URL: http://svn.apache.org/r1562106
Log:
"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-5504

Revision 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/release12.04/   (props changed)
    ofbiz/branches/release12.04/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy

Propchange: ofbiz/branches/release12.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1560699

Modified: ofbiz/branches/release12.04/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
URL: http://svn.apache.org/viewvc/ofbiz/branches/release12.04/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy?rev=1562106&r1=1562105&r2=1562106&view=diff
==============================================================================
--- ofbiz/branches/release12.04/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy (original)
+++ ofbiz/branches/release12.04/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy Tue Jan 28 16:20:48 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;