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

Unified Diff: utils/pub/io.dart

Issue 10803042: Reverting 9767. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | « utils/pub/git_source.dart ('k') | utils/pub/lock_file.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index c034ff13df318f5b28d978920786c8a210344010..a5246c2911c75f6a7b01b075637b1ce5781b9c05 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -129,7 +129,8 @@ Future<File> writeTextFile(file, String contents) {
* [Future] that completes when the deletion is done.
*/
Future<Directory> deleteFile(file) {
- return new File(_getPath(file)).delete();
+ file = _getFile(file);
+ return file.delete();
}
/**
« no previous file with comments | « utils/pub/git_source.dart ('k') | utils/pub/lock_file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698