Fix Travis errors

This commit is contained in:
Neil Fraser
2018-06-29 12:36:59 -07:00
committed by Neil Fraser
parent 07d1d86283
commit 67a18036d0
2 changed files with 2 additions and 3 deletions

View File

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

View File

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