| Index: sdk/lib/io/stdio.dart
|
| diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
|
| index 372552624bc00a8f78c6a90ccbd646ca7fe61cc9..766eee0b9b130c79f074cccf3ddab803f0c79eb3 100644
|
| --- a/sdk/lib/io/stdio.dart
|
| +++ b/sdk/lib/io/stdio.dart
|
| @@ -29,17 +29,6 @@ class _StdStream extends Stream<List<int>> {
|
| }
|
|
|
|
|
| -class _StdinEventSink implements EventSink<String> {
|
| - Function _add;
|
| - Function _addError;
|
| - Function _close;
|
| - _StdinEventSink(this._add, this._addError, this._close);
|
| -
|
| - void add(String string) => _add(string);
|
| - void addError(errorEvent) => _addError(errorEvent);
|
| - void close() => _close();
|
| -}
|
| -
|
| /**
|
| * [Stdin] allows both synchronous and asynchronous reads from the standard
|
| * input stream.
|
|
|