Fix lint error.

This commit is contained in:
Neil Fraser
2018-10-12 15:32:03 -07:00
committed by Neil Fraser
parent aa09ad9175
commit c7e391c71a

View File

@@ -561,7 +561,7 @@ Blockly.Workspace.prototype.getCommentById = function(id) {
* @return {boolean} True if all inputs are filled, false otherwise.
*/
Blockly.Workspace.prototype.allInputsFilled = function(
opt_shadowBlocksAreFilled) {
opt_shadowBlocksAreFilled) {
var blocks = this.getTopBlocks(false);
for (var i = 0, block; block = blocks[i]; i++) {
if (!block.allInputsFilled(opt_shadowBlocksAreFilled)) {