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

Unified Diff: runtime/lib/string_buffer.dart

Issue 10653002: Fix some warnings in the core library identified by the static analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: address review comments Created 8 years, 6 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/lib/mirrors_impl.dart ('k') | runtime/tests/vm/dart/byte_array_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/string_buffer.dart
diff --git a/runtime/lib/string_buffer.dart b/runtime/lib/string_buffer.dart
index 4b276d8b6e4161b83872c0fc8c9be0c5847174be..1e7dba0b73bf6e74112d6934cf412cc31e210e81 100644
--- a/runtime/lib/string_buffer.dart
+++ b/runtime/lib/string_buffer.dart
@@ -43,7 +43,7 @@ class StringBufferImpl implements StringBuffer {
/**
* Adds all items in [objects] to the buffer. Returns [this].
*/
- StringBuffer addAll(Collection<Object> objects) {
+ StringBuffer addAll(Collection objects) {
for (Object obj in objects) {
add(obj);
}
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | runtime/tests/vm/dart/byte_array_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698