| Index: tool/input_sdk/lib/async/stream_pipe.dart
|
| diff --git a/tool/input_sdk/lib/async/stream_pipe.dart b/tool/input_sdk/lib/async/stream_pipe.dart
|
| index ca1164dea81bb084211ee36eaff5e128bd744228..3683719062d332df6676ca6cca5a0f7cf5ed5792 100644
|
| --- a/tool/input_sdk/lib/async/stream_pipe.dart
|
| +++ b/tool/input_sdk/lib/async/stream_pipe.dart
|
| @@ -100,7 +100,7 @@ abstract class _ForwardingStream<S, T> extends Stream<T> {
|
| // Override the following methods in subclasses to change the behavior.
|
|
|
| void _handleData(S data, _EventSink<T> sink) {
|
| - var outputData = data;
|
| + dynamic outputData = data;
|
| sink._add(outputData);
|
| }
|
|
|
|
|