| Index: sdk/lib/async/stream.dart
|
| diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart
|
| index 0eaa6e229924ba4cf3f86b4cab1f175682831ce0..9ce21c6f926f302da3be42e3ff5816b3f96ca2b7 100644
|
| --- a/sdk/lib/async/stream.dart
|
| +++ b/sdk/lib/async/stream.dart
|
| @@ -943,19 +943,6 @@ class StreamView<T> extends Stream<T> {
|
| }
|
| }
|
|
|
| -/**
|
| - * [EventSink] wrapper that only exposes the [EventSink] interface.
|
| - */
|
| -class _EventSinkView<T> extends EventSink<T> {
|
| - final EventSink<T> _sink;
|
| -
|
| - _EventSinkView(this._sink);
|
| -
|
| - void add(T value) { _sink.add(value); }
|
| - void addError(error) { _sink.addError(error); }
|
| - void close() { _sink.close(); }
|
| -}
|
| -
|
|
|
| /**
|
| * The target of a [Stream.pipe] call.
|
|
|