| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 246297fe0de035492311553c45b737dd0e1662b8..9d624acef6e78ebd48f86341f4c812aeccaefea0 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -49166,9 +49166,9 @@ class _EventStreamSubscription<T extends Event> extends StreamSubscription<T> {
|
| }
|
| }
|
|
|
| - Future/*<E>*/ asFuture/*<E>*/([var/*=E*/ futureValue]) {
|
| + Future<E> asFuture<E>([E futureValue]) {
|
| // We just need a future that will never succeed or fail.
|
| - var completer = new Completer/*<E>*/();
|
| + var completer = new Completer<E>();
|
| return completer.future;
|
| }
|
| }
|
|
|