Index: lib/src/util/stream_queue.dart |
diff --git a/lib/src/util/stream_queue.dart b/lib/src/util/stream_queue.dart |
index 1c2e3b2252ac854e65a0376343c1c5101af94e8a..8beb82517f976f71a36f8e672c422cb5b7f44747 100644 |
--- a/lib/src/util/stream_queue.dart |
+++ b/lib/src/util/stream_queue.dart |
@@ -488,7 +488,7 @@ class _TakeRequest<T> implements _EventRequest { |
final _completer = new Completer<List<T>>(); |
/// List collecting events until enough have been seen. |
- final List _list = <T>[]; |
+ final List<T> _list = <T>[]; |
nweiz
2017/03/10 21:24:34
Just make this "final _list".
keertip
2017/03/10 21:30:37
Done.
|
/// Number of events to capture. |
/// |