Index: runtime/lib/string_buffer.dart |
=================================================================== |
--- runtime/lib/string_buffer.dart (revision 486) |
+++ runtime/lib/string_buffer.dart (working copy) |
@@ -60,7 +60,7 @@ |
* Clears the string buffer. Returns [this]. |
*/ |
StringBuffer clear() { |
- _buffer = new GrowableObjectArray<String>(); |
+ _buffer = new List<String>(); |
_length = 0; |
return this; |
} |
@@ -79,6 +79,6 @@ |
return result; |
} |
- GrowableObjectArray<String> _buffer; |
+ List<String> _buffer; |
int _length; |
} |