| Index: packages/glob/lib/src/stream_pool.dart
|
| diff --git a/packages/glob/lib/src/stream_pool.dart b/packages/glob/lib/src/stream_pool.dart
|
| index 817d57af43868b5959e20df37b28cc0e331e056d..cce94edebe983c730ba076721dbcd8d0c606e734 100644
|
| --- a/packages/glob/lib/src/stream_pool.dart
|
| +++ b/packages/glob/lib/src/stream_pool.dart
|
| @@ -46,8 +46,7 @@ class StreamPool<T> {
|
| void add(Stream<T> stream) {
|
| if (_subscriptions.containsKey(stream)) return;
|
| _subscriptions[stream] = stream.listen(_controller.add,
|
| - onError: _controller.addError,
|
| - onDone: () => remove(stream));
|
| + onError: _controller.addError, onDone: () => remove(stream));
|
| }
|
|
|
| /// Removes [stream] as a member of this pool.
|
|
|