From 032dfa70b38e2334007310a97de4ca15fb94af6a Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Tue, 8 Oct 2019 14:26:23 -0700 Subject: [PATCH] Version of #3199 for release --- core/rendered_connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rendered_connection.js b/core/rendered_connection.js index 1b1a1348e..76c2fa278 100644 --- a/core/rendered_connection.js +++ b/core/rendered_connection.js @@ -84,10 +84,10 @@ Blockly.utils.object.inherits(Blockly.RenderedConnection, Blockly.Connection); * @override */ Blockly.RenderedConnection.prototype.dispose = function() { + Blockly.RenderedConnection.superClass_.dispose.call(this); if (this.inDB_) { this.db_.removeConnection_(this); } - Blockly.RenderedConnection.superClass_.dispose.call(this); }; /**