diff options
Diffstat (limited to 'devtools/client/framework/menu.js')
-rw-r--r-- | devtools/client/framework/menu.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/client/framework/menu.js b/devtools/client/framework/menu.js index a4cd8af5f7..2aef8aaf01 100644 --- a/devtools/client/framework/menu.js +++ b/devtools/client/framework/menu.js @@ -49,10 +49,10 @@ Menu.prototype.clear = function () { /** * Add an item to a specified position in the menu * - * @param {int} pos - * @param {MenuItem} menuItem + * @param {int} _pos + * @param {MenuItem} _menuItem */ -Menu.prototype.insert = function (pos, menuItem) { +Menu.prototype.insert = function (_pos, _menuItem) { throw Error("Not implemented"); }; |