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

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

Issue 23054008: Remove the Path class from dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed first round of review comments Created 7 years, 4 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/directory.dart
diff --git a/sdk/lib/io/directory.dart b/sdk/lib/io/directory.dart
index 7bae57884757c1a05224ee7469c6bbf484fda691..57b656862726c8f5a60e07d78041a67e15d7e5f0 100644
--- a/sdk/lib/io/directory.dart
+++ b/sdk/lib/io/directory.dart
@@ -16,14 +16,6 @@ abstract class Directory implements FileSystemEntity {
factory Directory(String path) => new _Directory(path);
/**
- * Creates a directory object from a Path object. The path is either
- * an absolute path, or it is a relative path which is interpreted
- * relative to the directory in which the Dart VM was started.
- */
- @deprecated
- factory Directory.fromPath(Path path) => new _Directory.fromPath(path);
-
- /**
* Creates a directory object pointing to the current working
* directory.
*/

Powered by Google App Engine
This is Rietveld 408576698