| Index: sdk/lib/async/stream_impl.dart
|
| diff --git a/sdk/lib/async/stream_impl.dart b/sdk/lib/async/stream_impl.dart
|
| index 2fd95fde362d55cd6e9b207bc139d89b7f5f9042..51b65df8018c2e63d58367f7c4477e359008fcb9 100644
|
| --- a/sdk/lib/async/stream_impl.dart
|
| +++ b/sdk/lib/async/stream_impl.dart
|
| @@ -776,7 +776,7 @@ class _DoneStreamSubscription<T> implements StreamSubscription<T> {
|
|
|
| Future asFuture([futureValue]) {
|
| _Future result = new _Future();
|
| - _onDone = () { result._completeWithValue(null); }
|
| + _onDone = () { result._completeWithValue(null); };
|
| return result;
|
| }
|
|
|
|
|