Merge pull request #912 from rachel-fenichel/lint

Fix some lint errors
This commit is contained in:
Rachel Fenichel
2017-02-06 12:39:45 -08:00
committed by GitHub
14 changed files with 27 additions and 28 deletions

View File

@@ -1366,7 +1366,7 @@ Blockly.Block.prototype.setCommentText = function(text) {
* Set this block's warning text.
* @param {?string} text The text, or null to delete.
*/
Blockly.Block.prototype.setWarningText = function(text) {
Blockly.Block.prototype.setWarningText = function(/* text */) {
// NOP.
};
@@ -1374,7 +1374,7 @@ Blockly.Block.prototype.setWarningText = function(text) {
* Give this block a mutator dialog.
* @param {Blockly.Mutator} mutator A mutator dialog instance or null to remove.
*/
Blockly.Block.prototype.setMutator = function(mutator) {
Blockly.Block.prototype.setMutator = function(/* mutator */) {
// NOP.
};