File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.0.1
2
+
3
+ * Fix a fuzzy arrow type warning.
4
+
1
5
## 2.0.0
2
6
* Remove deprecated public ` result.dart ` and ` stream_zip.dart ` libraries and
3
7
deprecated classes ` ReleaseStreamTransformer ` and ` CaptureStreamTransformer ` .
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import '../typed/stream_subscription.dart';
10
10
///
11
11
/// Subclasses can override individual methods.
12
12
class DelegatingStreamSubscription <T > implements StreamSubscription <T > {
13
- final StreamSubscription _source;
13
+ final StreamSubscription < T > _source;
14
14
15
15
/// Create delegating subscription forwarding calls to [sourceSubscription] .
16
16
DelegatingStreamSubscription (StreamSubscription <T > sourceSubscription)
Original file line number Diff line number Diff line change 1
1
name : async
2
- version : 2.0.0
2
+ version : 2.0.1
3
3
author :
Dart Team <[email protected] >
4
4
description : Utility functions and classes related to the 'dart:async' library.
5
5
homepage : https://www.github.com/dart-lang/async
You can’t perform that action at this time.
0 commit comments