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

Unified Diff: runtime/bin/common.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/buffer_list.dart ('k') | runtime/bin/directory.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/common.dart
diff --git a/runtime/bin/common.dart b/runtime/bin/common.dart
index 7f2da974a16d1d35115b5574bc4b637f01c61e0f..33ce2a5dd9ef2e933205cefb6f3f973506935555 100644
--- a/runtime/bin/common.dart
+++ b/runtime/bin/common.dart
@@ -27,7 +27,7 @@ class OSError {
String toString() {
StringBuffer sb = new StringBuffer();
sb.add("OS Error");
- if (!message.isEmpty()) {
+ if (!message.isEmpty) {
sb.add(": ");
sb.add(message);
if (errorCode != noErrorCode) {
« no previous file with comments | « runtime/bin/buffer_list.dart ('k') | runtime/bin/directory.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698