Skip to content

Commit 91f15a9

Browse files
authored
Merge pull request phaserjs#4060 from felipeprov/master
Fixed possible typo on UpdateList#shutdown
2 parents 37d7b7b + 731a495 commit 91f15a9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/gameobjects/UpdateList.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,14 +265,14 @@ var UpdateList = new Class({
265265

266266
while (i--)
267267
{
268-
this.this._pendingRemoval[i].destroy(true);
268+
this._pendingRemoval[i].destroy(true);
269269
}
270270

271271
i = this._pendingInsertion.length;
272272

273273
while (i--)
274274
{
275-
this.this._pendingInsertion[i].destroy(true);
275+
this._pendingInsertion[i].destroy(true);
276276
}
277277

278278
this._list.length = 0;

0 commit comments

Comments
 (0)