Remove doNothing methods

This commit is contained in:
Florrie 2018-05-01 13:58:09 -03:00
parent 8c2d023925
commit 97a9b37843
2 changed files with 4 additions and 8 deletions

View file

@ -244,7 +244,7 @@ class Scratch3LooksBlocks {
looks_thinkforsecs: this.thinkforsecs,
looks_show: this.show,
looks_hide: this.hide,
looks_hideallsprites: this.doNothing,
looks_hideallsprites: () => {}, // legacy no-op block
looks_switchcostumeto: this.switchCostume,
looks_switchbackdropto: this.switchBackdrop,
looks_switchbackdroptoandwait: this.switchBackdropAndWait,
@ -255,8 +255,8 @@ class Scratch3LooksBlocks {
looks_cleargraphiceffects: this.clearEffects,
looks_changesizeby: this.changeSize,
looks_setsizeto: this.setSize,
looks_changestretchby: this.doNothing,
looks_setstretchto: this.doNothing,
looks_changestretchby: () => {}, // legacy no-op blocks
looks_setstretchto: () => {},
looks_gotofrontback: this.goToFrontBack,
looks_goforwardbackwardlayers: this.goForwardBackwardLayers,
looks_size: this.getSize,
@ -482,8 +482,6 @@ class Scratch3LooksBlocks {
// Else return name
return util.target.getCostumes()[util.target.currentCostume].name;
}
doNothing () {}
}
module.exports = Scratch3LooksBlocks;

View file

@ -67,7 +67,7 @@ class Scratch3SensingBlocks {
sensing_loudness: this.getLoudness,
sensing_askandwait: this.askAndWait,
sensing_answer: this.getAnswer,
sensing_userid: this.doNothing
sensing_userid: () => {} // legacy no-op block
};
}
@ -294,8 +294,6 @@ class Scratch3SensingBlocks {
// Otherwise, 0
return 0;
}
doNothing () {}
}
module.exports = Scratch3SensingBlocks;