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

Unified Diff: runtime/bin/file_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 | « runtime/bin/directory_impl.dart ('k') | runtime/bin/http_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file_impl.dart
===================================================================
--- runtime/bin/file_impl.dart (revision 5311)
+++ runtime/bin/file_impl.dart (working copy)
@@ -431,7 +431,7 @@
mode != FileMode.WRITE &&
mode != FileMode.APPEND) {
if (_onError != null) {
- _onError("Unknown file mode. Use FileMode.READ, FileMode.WRITE " +
+ _onError("Unknown file mode. Use FileMode.READ, FileMode.WRITE "
"or FileMode.APPEND.");
return;
}
@@ -457,7 +457,7 @@
if (mode != FileMode.READ &&
mode != FileMode.WRITE &&
mode != FileMode.APPEND) {
- throw new FileIOException("Unknown file mode. Use FileMode.READ, " +
+ throw new FileIOException("Unknown file mode. Use FileMode.READ, "
"FileMode.WRITE or FileMode.APPEND.");
}
var id = _FileUtils.checkedOpen(_name, mode._mode);
« no previous file with comments | « runtime/bin/directory_impl.dart ('k') | runtime/bin/http_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698