| Index: sdk/lib/io/file_impl.dart
|
| diff --git a/sdk/lib/io/file_impl.dart b/sdk/lib/io/file_impl.dart
|
| index dfa75f6ebd181e7fe183d530b539f0685605e00b..71e3ffefd6c0b7203efb08a0c32d0c19bea8a336 100644
|
| --- a/sdk/lib/io/file_impl.dart
|
| +++ b/sdk/lib/io/file_impl.dart
|
| @@ -181,11 +181,6 @@ class _FileStreamConsumer extends StreamConsumer<List<int>> {
|
| _openFuture = _file.open(mode: mode);
|
| }
|
|
|
| - _FileStreamConsumer.fromStdio(int fd) {
|
| - assert(1 <= fd && fd <= 2);
|
| - _openFuture = new Future.value(_File._openStdioSync(fd));
|
| - }
|
| -
|
| Future<File> addStream(Stream<List<int>> stream) {
|
| Completer<File> completer = new Completer<File>();
|
| _openFuture
|
|
|