Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Unified Diff: utils/archive/entry.dart

Issue 11865005: Remove Futures class, move methods to Future. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/apidoc/apidoc.dart ('k') | utils/archive/input_stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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]));
}
« no previous file with comments | « utils/apidoc/apidoc.dart ('k') | utils/archive/input_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698