| Index: sdk/lib/io/file.dart
|
| diff --git a/sdk/lib/io/file.dart b/sdk/lib/io/file.dart
|
| index ffcadc72bfce4bc2b7de0b0f4b8459e47a8db084..d5579ca67dfd78aa50eeedf13761db15907b9963 100644
|
| --- a/sdk/lib/io/file.dart
|
| +++ b/sdk/lib/io/file.dart
|
| @@ -60,21 +60,6 @@ abstract class File implements FileSystemEntity {
|
| void createSync();
|
|
|
| /**
|
| - * Delete the file. Returns a [:Future<File>:] that completes with
|
| - * the file when it has been deleted. Only a file or a link to a file
|
| - * can be deleted with this method, not a directory or a broken link.
|
| - */
|
| - Future<File> delete();
|
| -
|
| - /**
|
| - * Synchronously delete the file. Only a file or a link to a file
|
| - * can be deleted with this method, not a directory or a broken link.
|
| - *
|
| - * Throws a [FileException] if the operation fails.
|
| - */
|
| - void deleteSync();
|
| -
|
| - /**
|
| * Renames this file. Returns a `Future<File>` that completes
|
| * with a [File] instance for the renamed file.
|
| *
|
|
|