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

Unified Diff: runtime/bin/directory_impl.dart

Issue 10915007: Use new getters syntax in dart:io. A few were missed in the first round of cleanup. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
« no previous file with comments | « runtime/bin/chunked_stream.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory_impl.dart
diff --git a/runtime/bin/directory_impl.dart b/runtime/bin/directory_impl.dart
index 44a5b4feabecb3aa251622a840b50efa318c2137..7bac52e9263f9b94076cb0d89b5506a588942bba 100644
--- a/runtime/bin/directory_impl.dart
+++ b/runtime/bin/directory_impl.dart
@@ -173,7 +173,7 @@ class _Directory implements Directory {
return new _DirectoryLister(_path, recursive);
}
- String get path() { return _path; }
+ String get path { return _path; }
bool _isErrorResponse(response) {
return response is List && response[0] != _FileUtils.SUCCESS_RESPONSE;
« no previous file with comments | « runtime/bin/chunked_stream.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698