Remove unused field clone.

This commit is contained in:
Neil Fraser
2015-07-20 16:17:21 -07:00
parent 98a76a62db
commit 45fd0e9d44
10 changed files with 0 additions and 93 deletions

View File

@@ -63,17 +63,6 @@ Blockly.Field.prototype.visible_ = true;
*/
Blockly.Field.prototype.changeHandler_ = null;
/**
* Clone this Field. This must be implemented by all classes derived from
* Field. Since this class should not be instantiated, calling this method
* throws an exception.
* @throws {goog.assert.AssertionError}
*/
Blockly.Field.prototype.clone = function() {
goog.asserts.fail('There should never be an instance of Field, ' +
'only its derived classes.');
};
/**
* Non-breaking space.
*/