From b8cfab62e8e2566c3668d069ef851658a8a68b09 Mon Sep 17 00:00:00 2001 From: Monica Kozbial Date: Wed, 2 Dec 2020 16:39:30 -0800 Subject: [PATCH] Remove warning from Block bumpNeighbors (#4484) * Remove warning --- core/block.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/block.js b/core/block.js index 158a88a0d..cc3442522 100644 --- a/core/block.js +++ b/core/block.js @@ -580,8 +580,7 @@ Blockly.Block.prototype.lastConnectionInStack = function() { * connected should not coincidentally line up on screen. */ Blockly.Block.prototype.bumpNeighbours = function() { - console.warn('Not expected to reach Block.bumpNeighbours function. ' + - 'BlockSvg.bumpNeighbours was expected to be called instead.'); + // noop. }; /**