From bbdf5730f6aec7af34be3582d80e39e088ba61b8 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Mon, 19 Jul 2021 08:10:47 -0700 Subject: [PATCH] Reordered core/connection_checker.js requires --- core/connection_checker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/connection_checker.js b/core/connection_checker.js index 3a405edcb..4bd7bd4e2 100644 --- a/core/connection_checker.js +++ b/core/connection_checker.js @@ -15,10 +15,10 @@ goog.module('Blockly.ConnectionChecker'); goog.module.declareLegacyNamespace(); const Connection = goog.require('Blockly.Connection'); -const connectionTypes = goog.require('Blockly.connectionTypes'); const IConnectionChecker = goog.require('Blockly.IConnectionChecker'); -const registry = goog.require('Blockly.registry'); const RenderedConnection = goog.requireType('Blockly.RenderedConnection'); +const connectionTypes = goog.require('Blockly.connectionTypes'); +const registry = goog.require('Blockly.registry'); /** @suppress {extraRequire} */ goog.require('Blockly.constants');