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

Unified Diff: runtime/bin/directory.dart

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 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/common.dart ('k') | runtime/bin/file.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory.dart
diff --git a/runtime/bin/directory.dart b/runtime/bin/directory.dart
index c4b6b5948cb9099441540b38da27ccd2e6a35617..740f0cbbd6fb28c25298c7fa41e9203ae945bbba 100644
--- a/runtime/bin/directory.dart
+++ b/runtime/bin/directory.dart
@@ -182,7 +182,7 @@ class DirectoryIOException implements Exception {
String toString() {
StringBuffer sb = new StringBuffer();
sb.add("DirectoryIOException");
- if (!message.isEmpty()) {
+ if (!message.isEmpty) {
sb.add(": $message");
if (path != null) {
sb.add(", path = $path");
« no previous file with comments | « runtime/bin/common.dart ('k') | runtime/bin/file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698