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

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

Issue 2681683005: [dart:io] Adds functions to set file access and modification time (Closed)
Patch Set: Fix sync functions' return types. Format. Created 3 years, 10 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
Index: sdk/lib/io/link.dart
diff --git a/sdk/lib/io/link.dart b/sdk/lib/io/link.dart
index 83940b4e47ab6d1770d053746ac4fbd6f73d171b..99b72c8c2c633733a38ffd6ec724464e70d23001 100644
--- a/sdk/lib/io/link.dart
+++ b/sdk/lib/io/link.dart
@@ -162,10 +162,6 @@ class _Link extends FileSystemEntity implements Link {
Link get absolute => new Link(_absolutePath);
- Future<FileStat> stat() => FileStat.stat(path);
-
- FileStat statSync() => FileStat.statSync(path);
-
Future<Link> create(String target, {bool recursive: false}) {
if (Platform.isWindows) {
target = _makeWindowsLinkTarget(target);

Powered by Google App Engine
This is Rietveld 408576698