From e22923df75ccc07f36ffe22fa5d1538d0c1320ae Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Thu, 1 Mar 2018 18:32:15 -0800 Subject: [PATCH] Make getEventWorkspace_ protected. Fixes 12 warnings --- core/events/abstract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/events/abstract.js b/core/events/abstract.js index ab6c27b91..1ee905425 100644 --- a/core/events/abstract.js +++ b/core/events/abstract.js @@ -134,7 +134,7 @@ Blockly.Events.Abstract.prototype.run = function( * Get workspace the event belongs to. * @return {Blockly.Workspace} The workspace the event belongs to. * @throws {Error} if workspace is null. - * @private + * @protected */ Blockly.Events.Abstract.prototype.getEventWorkspace_ = function() { var workspace = Blockly.Workspace.getById(this.workspaceId);