| Index: sdk/lib/async/event_loop.dart
|
| diff --git a/sdk/lib/async/event_loop.dart b/sdk/lib/async/event_loop.dart
|
| index 9462460ecee20605358ec6f0bd7d8e6ae8abd039..b14a5d812e8bf61378a00736cdbc63c56cc5f218 100644
|
| --- a/sdk/lib/async/event_loop.dart
|
| +++ b/sdk/lib/async/event_loop.dart
|
| @@ -55,8 +55,7 @@ void _scheduleAsyncCallback(callback) {
|
| * }
|
| */
|
| void runAsync(void callback()) {
|
| - _Zone currentZone = _Zone._current;
|
| - currentZone.runAsync(callback, currentZone);
|
| + Zone.current.runAsync(callback);
|
| }
|
|
|
| class _AsyncRun {
|
|
|