| Index: sdk/lib/io/file_impl.dart
|
| diff --git a/sdk/lib/io/file_impl.dart b/sdk/lib/io/file_impl.dart
|
| index 14c2942b16510695edb20edb0717f52858c350b0..32afe9af60aa2d87ab0c279f073360dcc7f08c52 100644
|
| --- a/sdk/lib/io/file_impl.dart
|
| +++ b/sdk/lib/io/file_impl.dart
|
| @@ -151,7 +151,6 @@ class _FileStreamConsumer extends StreamConsumer<List<int>, File> {
|
| File _file;
|
| Future<RandomAccessFile> _openFuture;
|
| StreamSubscription _subscription;
|
| -
|
|
|
| _FileStreamConsumer(File this._file, FileMode mode) {
|
| _openFuture = _file.open(mode: mode);
|
| @@ -220,7 +219,8 @@ const int _WRITE_BYTE_REQUEST = 15;
|
| const int _READ_REQUEST = 16;
|
| const int _READ_LIST_REQUEST = 17;
|
| const int _WRITE_LIST_REQUEST = 18;
|
| -const int _DELETE_LINK_REQUEST = 19;
|
| +const int _CREATE_LINK_REQUEST = 19;
|
| +const int _DELETE_LINK_REQUEST = 20;
|
|
|
| // Base class for _File and _RandomAccessFile with shared functions.
|
| class _FileBase {
|
|
|