| Index: lib/src/stream_splitter.dart
|
| diff --git a/lib/src/stream_splitter.dart b/lib/src/stream_splitter.dart
|
| index addba93431aeeff342b26211d7c6da527234dbf7..6ec440f5dd8e5c2c83754e73020f8f34a3e1852d 100644
|
| --- a/lib/src/stream_splitter.dart
|
| +++ b/lib/src/stream_splitter.dart
|
| @@ -35,7 +35,7 @@ class StreamSplitter<T> {
|
|
|
| /// The buffer of events or errors that have already been emitted by
|
| /// [_stream].
|
| - final _buffer = new Queue<Result<T>>();
|
| + final _buffer = new List<Result<T>>();
|
|
|
| /// The controllers for branches that are listening for future events from
|
| /// [_stream].
|
|
|