| Index: utils/archive/entry.dart
|
| diff --git a/utils/archive/entry.dart b/utils/archive/entry.dart
|
| index f89df03d27c0204b1721ed743277321e91b5154f..f851959d6158d15ed8d22ab24db6311d0ee50c78 100644
|
| --- a/utils/archive/entry.dart
|
| +++ b/utils/archive/entry.dart
|
| @@ -214,7 +214,7 @@ class ArchiveEntry {
|
| stream.onError = completer.completeError;
|
| stream.onClosed = () => completer.complete(buffer);
|
|
|
| - return Futures.wait([call(CLONE, _id), completer.future])
|
| + return Future.wait([call(CLONE, _id), completer.future])
|
| .then((list) => new CompleteArchiveEntry._(list[0], list[1]));
|
| }
|
|
|
|
|