From f4de938765a63545cf165bb96b92b179685a5372 Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 2 Jul 2018 16:25:10 +0200 Subject: [PATCH] remove uneeded param --- src/lib/cmdInterpreter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cmdInterpreter.js b/src/lib/cmdInterpreter.js index 327cd8bcf0..66af66236a 100644 --- a/src/lib/cmdInterpreter.js +++ b/src/lib/cmdInterpreter.js @@ -5,7 +5,7 @@ var EventManager = remixLib.EventManager var CommandInterpreterAPI = require('./cmdInterpreterAPI') class CmdInterpreter { - constructor (api) { + constructor () { this.event = new EventManager() this.api = new CommandInterpreterAPI(this) }