| Index: utils/pub/error_group.dart
|
| diff --git a/utils/pub/error_group.dart b/utils/pub/error_group.dart
|
| index b5f8f8e9ea5fc1f9804b36411473a215e6238fae..a538709ac882ffb490da2c6415853eb8570c5177 100644
|
| --- a/utils/pub/error_group.dart
|
| +++ b/utils/pub/error_group.dart
|
| @@ -264,7 +264,7 @@ class _ErrorGroupStream extends Stream {
|
| if (_isDone) return;
|
| _subscription.cancel();
|
| // Call these asynchronously to work around issue 7913.
|
| - new Future.immediate(null).then((_) {
|
| + new Future.value().then((_) {
|
| _controller.addError(e.error, e.stackTrace);
|
| _controller.close();
|
| });
|
|
|