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

Unified Diff: lib/coreimpl/hash_map_set.dart

Issue 10910037: - Change "static final" to "static const" in the lib/coreimpl/ directory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 | « lib/coreimpl/dual_pivot_quicksort.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreimpl/hash_map_set.dart
===================================================================
--- lib/coreimpl/hash_map_set.dart (revision 11702)
+++ lib/coreimpl/hash_map_set.dart (working copy)
@@ -37,10 +37,10 @@
int _numberOfDeleted;
// The sentinel when a key is deleted from the map.
- static final _DeletedKeySentinel _DELETED_KEY = const _DeletedKeySentinel();
+ static const _DeletedKeySentinel _DELETED_KEY = const _DeletedKeySentinel();
// The initial capacity of a hash map.
- static final int _INITIAL_CAPACITY = 8; // must be power of 2
+ static const int _INITIAL_CAPACITY = 8; // must be power of 2
HashMapImplementation() {
_numberOfEntries = 0;
« no previous file with comments | « lib/coreimpl/dual_pivot_quicksort.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698