diff --git a/core/toolbox/toolbox_item.js b/core/toolbox/toolbox_item.js index f2cb3b711..be7ba37fb 100644 --- a/core/toolbox/toolbox_item.js +++ b/core/toolbox/toolbox_item.js @@ -36,7 +36,6 @@ const toolbox = goog.requireType('Blockly.utils.toolbox'); * @implements {IToolboxItem} */ const ToolboxItem = function(toolboxItemDef, toolbox, opt_parent) { - /** * The id for the category. * @type {string} @@ -149,7 +148,6 @@ ToolboxItem.prototype.isCollapsible = function() { * Dispose of this toolbox item. No-op by default. * @public */ -ToolboxItem.prototype.dispose = function() { -}; +ToolboxItem.prototype.dispose = function() {}; exports = ToolboxItem;