Make getEventWorkspace_ protected.

Fixes 12 warnings
This commit is contained in:
Rachel Fenichel
2018-03-01 18:32:15 -08:00
committed by GitHub
parent 7356c664a0
commit e22923df75

View File

@@ -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);