Remove unused getCostumeName function

This commit is contained in:
Florrie 2018-06-12 19:31:53 -03:00
parent 24c6338302
commit c24e34d4e3
2 changed files with 0 additions and 13 deletions

View file

@ -252,7 +252,6 @@ class Scratch3LooksBlocks {
looks_goforwardbackwardlayers: this.goForwardBackwardLayers,
looks_size: this.getSize,
looks_costumenumbername: this.getCostumeNumberName,
looks_costumename: this.getCostumeName,
looks_backdropnumbername: this.getBackdropNumberName
};
}
@ -489,11 +488,6 @@ class Scratch3LooksBlocks {
// Else return name
return util.target.getCostumes()[util.target.currentCostume].name;
}
getCostumeName (args, util) {
// Obsolete block from earlier Scratch versions.
return util.target.getCostumes()[util.target.currentCostume].name;
}
}
module.exports = Scratch3LooksBlocks;