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

Unified Diff: runtime/lib/growable_array.dart

Issue 532233002: Remove unused string interpolations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « no previous file | sdk/lib/io/http_headers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/growable_array.dart
diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart
index ade7ec19e4cf15b6e364955499810a393ef64c78..fd3426ccd95e1507a097c909608601291ddd5177 100644
--- a/runtime/lib/growable_array.dart
+++ b/runtime/lib/growable_array.dart
@@ -262,13 +262,13 @@ class _GrowableList<T> implements List<T> {
StringBuffer buffer = new StringBuffer();
if (separator.isEmpty) {
for (int i = 0; i < this.length; i++) {
- buffer.write("${this[i]}");
+ buffer.write(this[i]);
}
} else {
- buffer.write("${this[0]}");
+ buffer.write(this[0]);
for (int i = 1; i < this.length; i++) {
buffer.write(separator);
- buffer.write("${this[i]}");
+ buffer.write(this[i]);
}
}
return buffer.toString();
« no previous file with comments | « no previous file | sdk/lib/io/http_headers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698