Removing namespace declarations for deprecated and unused namespaces. (#1796)

These namespaces use to contain the original block hue constants,
but were deprecated (via comment, except for procedures) over a year
ago. With the removal of those constants, the declarations were
creating empty, unused objects.
This commit is contained in:
Andrew n marshall
2018-04-18 15:32:26 -07:00
committed by GitHub
parent 2bfff4a335
commit 75459abfdd
8 changed files with 0 additions and 9 deletions

View File

@@ -29,7 +29,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.colour'); // Deprecated
goog.provide('Blockly.Constants.Colour'); // deprecated, 2018 April 5
goog.require('Blockly.Blocks');

View File

@@ -29,7 +29,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.lists'); // Deprecated
goog.provide('Blockly.Constants.Lists'); // deprecated, 2018 April 5
goog.require('Blockly.Blocks');

View File

@@ -29,7 +29,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.logic'); // Deprecated
goog.provide('Blockly.Constants.Logic');
goog.require('Blockly.Blocks');

View File

@@ -29,7 +29,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.loops'); // Deprecated
goog.provide('Blockly.Constants.Loops');
goog.require('Blockly.Blocks');

View File

@@ -29,7 +29,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.math'); // Deprecated
goog.provide('Blockly.Constants.Math');
goog.require('Blockly.Blocks');

View File

@@ -24,8 +24,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.procedures');
goog.require('Blockly.Blocks');
goog.require('Blockly');

View File

@@ -24,7 +24,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.texts'); // Deprecated
goog.provide('Blockly.Constants.Text');
goog.require('Blockly.Blocks');

View File

@@ -29,7 +29,6 @@
*/
'use strict';
goog.provide('Blockly.Blocks.variables'); // Deprecated.
goog.provide('Blockly.Constants.Variables');
goog.require('Blockly.Blocks');