chore: naming
This commit is contained in:
parent
e90755fc01
commit
2ccd527884
|
@ -20,7 +20,7 @@ export function Synchronized(Superclass) {
|
|||
this._childrenTickers = [];
|
||||
}
|
||||
|
||||
ensureChildrenAreSynchronized() {
|
||||
ensureSynchronizedChildren() {
|
||||
if (!this._childrenNeedInitialization) {
|
||||
return;
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ export function Synchronized(Superclass) {
|
|||
}
|
||||
|
||||
tickSynchronized(elapsed) {
|
||||
this.ensureChildrenAreSynchronized();
|
||||
this.ensureSynchronizedChildren();
|
||||
for (let i = 0; i < this._childrenTickers.length; ++i) {
|
||||
this._childrenTickers[i](elapsed);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user