| Index: sdk/lib/async/future_impl.dart
|
| diff --git a/sdk/lib/async/future_impl.dart b/sdk/lib/async/future_impl.dart
|
| index 3d7670376f88a13eac53248d472f5ee58e269480..cb2617e898400872d0c75e2f24f11ecd0c279082 100644
|
| --- a/sdk/lib/async/future_impl.dart
|
| +++ b/sdk/lib/async/future_impl.dart
|
| @@ -86,7 +86,7 @@ class _FutureImpl<T> implements Future<T> {
|
|
|
| Completer completer = new Completer<List>();
|
| int remaining = futures.length;
|
| - List values = new List(futures.length);
|
| + List values = new List.fixedLength(futures.length);
|
|
|
| // As each future completes, put its value into the corresponding
|
| // position in the list of values.
|
|
|