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

Unified Diff: pkg/intl/example/basic/basic_example.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 | « pkg/http/lib/src/multipart_request.dart ('k') | pkg/intl/lib/date_symbol_data_file.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/example/basic/basic_example.dart
diff --git a/pkg/intl/example/basic/basic_example.dart b/pkg/intl/example/basic/basic_example.dart
index 68ec594471931be4e05276f3c73e09e8e60b05fe..e8e99d666393b58226c2f5ca8523f67a0273a53d 100644
--- a/pkg/intl/example/basic/basic_example.dart
+++ b/pkg/intl/example/basic/basic_example.dart
@@ -37,7 +37,7 @@ void setup(Function program, Function output) {
var thaiDatesFuture = initializeDateFormatting('th_TH', null);
var germanMessagesFuture = initializeMessages('de_DE');
var thaiMessagesFuture = initializeMessages('th_TH');
- Futures.wait([germanDatesFuture, thaiDatesFuture, germanMessagesFuture,
+ Future.wait([germanDatesFuture, thaiDatesFuture, germanMessagesFuture,
thaiMessagesFuture]).then(program);
}
« no previous file with comments | « pkg/http/lib/src/multipart_request.dart ('k') | pkg/intl/lib/date_symbol_data_file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698