From 91e2d03eea5d7abbbbee6da5c60af8404fb492c8 Mon Sep 17 00:00:00 2001 From: Andrew n marshall Date: Wed, 21 Feb 2018 10:58:52 -0800 Subject: [PATCH] Moving TODO from doc comment to single line comment. --- core/workspace.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/workspace.js b/core/workspace.js index 6f7b06231..5f4c6946e 100644 --- a/core/workspace.js +++ b/core/workspace.js @@ -277,12 +277,12 @@ Blockly.Workspace.prototype.variableIndexOf = function( /** * Find the variable by the given name and return it. Return null if it is not * found. - * TODO (#1199): Possibly delete this function. * @param {!string} name The name to check for. * @param {string=} opt_type The type of the variable. If not provided it * defaults to the empty string, which is a specific type. * @return {?Blockly.VariableModel} the variable with the given name. */ +// TODO (#1199): Possibly delete this function. Blockly.Workspace.prototype.getVariable = function(name, opt_type) { return this.variableMap_.getVariable(name, opt_type); };