This is an automated email from the ASF dual-hosted git repository. nmalin pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new 92d3625 Fixed: remove unnecessary quote on groovy map 92d3625 is described below commit 92d36251537dcee56eb3e5dade88e73d1971e76b Author: Nicolas Malin <nicolas.ma...@nereide.fr> AuthorDate: Wed Aug 18 09:10:39 2021 +0200 Fixed: remove unnecessary quote on groovy map --- applications/content/groovyScripts/content/ContentServices.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/content/groovyScripts/content/ContentServices.groovy b/applications/content/groovyScripts/content/ContentServices.groovy index 1defdf2..c5e7106 100644 --- a/applications/content/groovyScripts/content/ContentServices.groovy +++ b/applications/content/groovyScripts/content/ContentServices.groovy @@ -53,7 +53,7 @@ def createTextAndUploadedContent() { } def updateSingleContentPurpose() { - delegator.removeByAnd("ContentPurpose", ["contentId": parameters.contentId]) + delegator.removeByAnd("ContentPurpose", [contentId: parameters.contentId]) run service : "createContentPurpose", with: parameters }