Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: sdk/lib/io/file_impl.dart

Issue 50413005: Reapply "Remove @deprecated features." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/io/file.dart ('k') | tests/lib/mirrors/library_uri_io_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/file_impl.dart
diff --git a/sdk/lib/io/file_impl.dart b/sdk/lib/io/file_impl.dart
index 71dca70cef7204961ecce61f26c8437a4542c4f9..8f26576592de207c58d34e1bddde915fc3e1e63f 100644
--- a/sdk/lib/io/file_impl.dart
+++ b/sdk/lib/io/file_impl.dart
@@ -308,8 +308,6 @@ class _File extends FileSystemEntity implements File {
return new File(newPath);
}
- Directory get directory => super.parent;
-
Future<RandomAccessFile> open({FileMode mode: FileMode.READ}) {
if (mode != FileMode.READ &&
mode != FileMode.WRITE &&
@@ -388,10 +386,6 @@ class _File extends FileSystemEntity implements File {
return new _RandomAccessFile(id, "");
}
- Future<String> fullPath() => resolveSymbolicLinks();
-
- String fullPathSync() => resolveSymbolicLinksSync();
-
Stream<List<int>> openRead([int start, int end]) {
return new _FileStream(path, start, end);
}
« no previous file with comments | « sdk/lib/io/file.dart ('k') | tests/lib/mirrors/library_uri_io_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698