| Index: pkg/analyzer/lib/src/cancelable_future.dart
|
| diff --git a/pkg/analyzer/lib/src/cancelable_future.dart b/pkg/analyzer/lib/src/cancelable_future.dart
|
| index 307e1d9a8962d4678e2f5c0c7874a950ba7b7f0a..43eb00c10c299b3d0fac32a535653a02758df55d 100644
|
| --- a/pkg/analyzer/lib/src/cancelable_future.dart
|
| +++ b/pkg/analyzer/lib/src/cancelable_future.dart
|
| @@ -252,7 +252,7 @@ class _CancelableCompleterFuture<T> implements CancelableFuture<T> {
|
| _completer._outerCompleter.future.catchError(onError, test: test);
|
|
|
| @override
|
| - Future/*<S>*/ then/*<S>*/(/*=S*/ onValue(T value), {Function onError}) =>
|
| + Future/*<S>*/ then/*<S>*/(onValue(T value), {Function onError}) =>
|
| _completer._outerCompleter.future.then(onValue, onError: onError);
|
|
|
| @override
|
| @@ -288,7 +288,7 @@ class _WrappedFuture<T> implements CancelableFuture<T> {
|
| _future.catchError(onError, test: test);
|
|
|
| @override
|
| - Future/*<S>*/ then/*<S>*/(/*=S*/ onValue(T value), {Function onError}) =>
|
| + Future/*<S>*/ then/*<S>*/(onValue(T value), {Function onError}) =>
|
| _future.then(onValue, onError: onError);
|
|
|
| @override
|
|
|