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
commit 1558f232c27ae289af06253b6ae3262379f5f98d Author: Nicolas Malin <nicolas.ma...@nereide.fr> AuthorDate: Fri May 29 16:29:32 2020 +0200 Fixed: Remove unnecessary semi-column --- .../groovy/org/apache/ofbiz/service/engine/GroovyBaseScript.groovy | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/framework/service/src/main/groovy/org/apache/ofbiz/service/engine/GroovyBaseScript.groovy b/framework/service/src/main/groovy/org/apache/ofbiz/service/engine/GroovyBaseScript.groovy index 9e5dc3d..e508a17 100644 --- a/framework/service/src/main/groovy/org/apache/ofbiz/service/engine/GroovyBaseScript.groovy +++ b/framework/service/src/main/groovy/org/apache/ofbiz/service/engine/GroovyBaseScript.groovy @@ -18,8 +18,6 @@ *******************************************************************************/ package org.apache.ofbiz.service.engine -import java.util.Map - import org.apache.ofbiz.base.util.Debug import org.apache.ofbiz.entity.util.EntityQuery import org.apache.ofbiz.service.DispatchContext @@ -33,8 +31,8 @@ abstract class GroovyBaseScript extends Script { public static final String module = GroovyBaseScript.class.getName() Map runService(String serviceName, Map inputMap) throws ExecutionServiceException { - LocalDispatcher dispatcher = binding.getVariable('dispatcher'); - DispatchContext dctx = dispatcher.getDispatchContext(); + LocalDispatcher dispatcher = binding.getVariable('dispatcher') + DispatchContext dctx = dispatcher.getDispatchContext() if (!inputMap.userLogin) { inputMap.userLogin = this.binding.getVariable('parameters').userLogin }