diff --git a/bundles/org.openhab.core.automation.module.script/src/main/java/org/openhab/core/automation/module/script/internal/handler/ScriptActionHandler.java b/bundles/org.openhab.core.automation.module.script/src/main/java/org/openhab/core/automation/module/script/internal/handler/ScriptActionHandler.java index 774833fe33..0ea27b747f 100644 --- a/bundles/org.openhab.core.automation.module.script/src/main/java/org/openhab/core/automation/module/script/internal/handler/ScriptActionHandler.java +++ b/bundles/org.openhab.core.automation.module.script/src/main/java/org/openhab/core/automation/module/script/internal/handler/ScriptActionHandler.java @@ -41,17 +41,13 @@ public class ScriptActionHandler extends AbstractScriptModuleHandler imp /** * constructs a new ScriptActionHandler * - * @param module - * @param ruleUid the UID of the rule this handler is used for + * @param module the module + * @param ruleUID the UID of the rule this handler is used for */ public ScriptActionHandler(Action module, String ruleUID, ScriptEngineManager scriptEngineManager) { super(module, ruleUID, scriptEngineManager); } - @Override - public void dispose() { - } - @Override public @Nullable Map execute(final Map context) { Map resultMap = new HashMap<>();