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

Unified Diff: runtime/lib/collection_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 | « no previous file | runtime/lib/string_buffer_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/collection_patch.dart
===================================================================
--- runtime/lib/collection_patch.dart (revision 37229)
+++ runtime/lib/collection_patch.dart (working copy)
@@ -776,8 +776,8 @@
final _HashSet _set;
final int _modificationCount;
int _index = 0;
- _HashSetEntry _next = null;
- E _current = null;
+ _HashSetEntry _next;
+ E _current;
_HashSetIterator(_HashSet hashSet)
: _set = hashSet, _modificationCount = hashSet._modificationCount;
@@ -851,7 +851,6 @@
int _modificationCount;
_LinkedHashMapIterator(LinkedHashMap map)
: _map = map,
- _current = null,
_next = map._nextEntry,
_modificationCount = map._modificationCount;
« no previous file with comments | « no previous file | runtime/lib/string_buffer_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698