Merge pull request #1683 from google/rachel-fenichel-patch-3

Make getEventWorkspace_ protected.
This commit is contained in:
Rachel Fenichel
2018-03-02 13:51:00 -08:00
committed by GitHub

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