Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
fix(VmTurnZone): Remove a unneeded delegate.run() call.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbdeboer authored and travis@travis-ci.org committed May 16, 2014
1 parent c2cb3b5 commit a0d5d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/zone.dart
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class VmTurnZone {
delegate.run(zone, onTurnStart);
}
while (!_asyncQueue.isEmpty) {
delegate.run(zone, _asyncQueue.removeAt(0));
_asyncQueue.removeAt(0)();
}
delegate.run(zone, onTurnDone);
_currentlyInTurn = false;
Expand Down

0 comments on commit a0d5d82

Please sign in to comment.