From 67a18036d038d10f54cb8b6008f94be4e770a58b Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Fri, 29 Jun 2018 12:36:59 -0700 Subject: [PATCH] Fix Travis errors --- core/utils.js | 1 - core/workspace_svg.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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();