Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit 0d6c764

Browse files
authored
Fix a fuzzy arrow warning (#41)
Closes #40
1 parent b4f3a98 commit 0d6c764

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.1
2+
3+
* Fix a fuzzy arrow type warning.
4+
15
## 2.0.0
26
* Remove deprecated public `result.dart` and `stream_zip.dart` libraries and
37
deprecated classes `ReleaseStreamTransformer` and `CaptureStreamTransformer`.

lib/src/delegate/stream_subscription.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import '../typed/stream_subscription.dart';
1010
///
1111
/// Subclasses can override individual methods.
1212
class DelegatingStreamSubscription<T> implements StreamSubscription<T> {
13-
final StreamSubscription _source;
13+
final StreamSubscription<T> _source;
1414

1515
/// Create delegating subscription forwarding calls to [sourceSubscription].
1616
DelegatingStreamSubscription(StreamSubscription<T> sourceSubscription)

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: async
2-
version: 2.0.0
2+
version: 2.0.1
33
author: Dart Team <[email protected]>
44
description: Utility functions and classes related to the 'dart:async' library.
55
homepage: https://www.github.com/dart-lang/async

0 commit comments

Comments
 (0)