Skip to content

Commit

Permalink
Fix a fuzzy arrow warning (dart-archive/async#41)
Browse files Browse the repository at this point in the history
Closes dart-lang/async#40
  • Loading branch information
nex3 authored Oct 3, 2017
1 parent 087cfe0 commit d2af4f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions pkgs/async/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 pkgs/async/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 pkgs/async/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 <misc@dartlang.org>
description: Utility functions and classes related to the 'dart:async' library.
homepage: https://www.github.com/dart-lang/async
Expand Down

0 comments on commit d2af4f1

Please sign in to comment.