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

Unified Diff: sdk/lib/io/file.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/file.dart
diff --git a/sdk/lib/io/file.dart b/sdk/lib/io/file.dart
index dba693195e89c292f2c1b8bdc349c6ec3fe713fe..5cbff1cd663e67c27637c9f048d8ac30b5f8b4d4 100644
--- a/sdk/lib/io/file.dart
+++ b/sdk/lib/io/file.dart
@@ -41,12 +41,6 @@ abstract class File implements FileSystemEntity {
factory File(String path) => new _File(path);
/**
- * Create a File object from a Path object.
- */
- @deprecated
- factory File.fromPath(Path path) => new _File.fromPath(path);
-
- /**
* Create the file. Returns a [:Future<File>:] that completes with
* the file when it has been created.
*

Powered by Google App Engine
This is Rietveld 408576698