diff --git a/core/utils.js b/core/utils.js index 716fe87d0..fa099627a 100644 --- a/core/utils.js +++ b/core/utils.js @@ -32,7 +32,6 @@ **/ goog.provide('Blockly.utils'); -goog.require('Blockly.Touch'); goog.require('goog.dom'); goog.require('goog.events.BrowserFeature'); goog.require('goog.math.Coordinate'); diff --git a/core/workspace_svg.js b/core/workspace_svg.js index 1d85c2771..dcc4cddef 100644 --- a/core/workspace_svg.js +++ b/core/workspace_svg.js @@ -1090,8 +1090,8 @@ Blockly.WorkspaceSvg.prototype.deleteVariableById = function(id) { * @return {?Blockly.VariableModel} The newly created variable. * @package */ -Blockly.WorkspaceSvg.prototype.createVariable = - function(name, opt_type, opt_id) { +Blockly.WorkspaceSvg.prototype.createVariable = function(name, + opt_type, opt_id) { var newVar = Blockly.WorkspaceSvg.superClass_.createVariable.call( this, name, opt_type, opt_id); this.refreshToolboxSelection();