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

Unified Diff: runtime/lib/string_buffer_patch.dart

Issue 333583003: VM: Remove explicit field initialization with null from library classes. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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/collection_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/string_buffer_patch.dart
===================================================================
--- runtime/lib/string_buffer_patch.dart (revision 37229)
+++ runtime/lib/string_buffer_patch.dart (working copy)
@@ -11,7 +11,7 @@
* When strings are written to the string buffer, we add them to a
* list of string parts.
*/
- List<String> _parts = null;
+ List<String> _parts;
/**
* Total number of code units in the string parts. Does not include
@@ -34,7 +34,7 @@
* used when writing short strings or individual char codes to the
* buffer. The buffer is allocated on demand.
*/
- Uint16List _buffer = null;
+ Uint16List _buffer;
int _bufferPosition = 0;
/**
« no previous file with comments | « runtime/lib/collection_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698