Remove reference to unimported Future.

BUG=

Review URL: https://codereview.chromium.org//23551007

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@27030 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
johnniwinther@google.com
2013-09-03 08:28:11 +00:00
parent e2d27aeec6
commit 4c7b97d041
+1 -1
View File
@@ -62,7 +62,7 @@ void asyncEnd() {
}
}
void asyncTest(Future f()) {
void asyncTest(f()) {
asyncStart();
f().whenComplete(() => asyncEnd());
}