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

Unified Diff: runtime/bin/directory_impl.dart

Issue 9690003: - Fix use of String operator + in runtime and standalone libraries. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | « corelib/src/future.dart ('k') | runtime/bin/file_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory_impl.dart
===================================================================
--- runtime/bin/directory_impl.dart (revision 5311)
+++ runtime/bin/directory_impl.dart (working copy)
@@ -82,8 +82,7 @@
_path = result;
callback();
} else if (_onError != null) {
- _onError("Could not create temporary directory [$_path]: " +
- "${result[1]}");
+ _onError("Could not create temporary directory [$_path]: ${result[1]}");
}
});
}
@@ -95,7 +94,7 @@
_path = result;
} else {
throw new DirectoryException(
- "Could not create temporary directory [$_path]: " +
+ "Could not create temporary directory [$_path]: "
"${status._errorMessage}",
status._errorCode);
}
« no previous file with comments | « corelib/src/future.dart ('k') | runtime/bin/file_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698