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

Fix a fuzzy arrow warning #41

Merged
merged 1 commit into from
Oct 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.1

* Fix a fuzzy arrow type warning.

## 2.0.0
* Remove deprecated public `result.dart` and `stream_zip.dart` libraries and
deprecated classes `ReleaseStreamTransformer` and `CaptureStreamTransformer`.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/delegate/stream_subscription.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import '../typed/stream_subscription.dart';
///
/// Subclasses can override individual methods.
class DelegatingStreamSubscription<T> implements StreamSubscription<T> {
final StreamSubscription _source;
final StreamSubscription<T> _source;

/// Create delegating subscription forwarding calls to [sourceSubscription].
DelegatingStreamSubscription(StreamSubscription<T> sourceSubscription)
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: async
version: 2.0.0
version: 2.0.1
author: Dart Team <[email protected]>
description: Utility functions and classes related to the 'dart:async' library.
homepage: https://www.github.com/dart-lang/async
Expand Down