Chromium Code Reviews| Index: sdk/lib/io/file_impl.dart |
| diff --git a/sdk/lib/io/file_impl.dart b/sdk/lib/io/file_impl.dart |
| index 5b61fb3453215d127952da6119921b8f22054a27..dce4cbc742bfb130997f34f28b209e492ede8684 100644 |
| --- a/sdk/lib/io/file_impl.dart |
| +++ b/sdk/lib/io/file_impl.dart |
| @@ -213,7 +213,7 @@ class _FileStreamConsumer extends StreamConsumer<List<int>> { |
| } |
| Future<File> close() => |
| - _openFuture.then/*<File>*/((openedFile) => openedFile.close()); |
| + _openFuture.then<File>((openedFile) => openedFile.close()); |
| } |