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

Unified Diff: lib/coreimpl/linked_hash_map.dart

Issue 10993059: Stop using the Hashable interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Another space removed. Created 8 years, 3 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/hash_map_set.dart ('k') | lib/isolate/base.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreimpl/linked_hash_map.dart
diff --git a/lib/coreimpl/linked_hash_map.dart b/lib/coreimpl/linked_hash_map.dart
index 4f25129f11dde7abf700661aceb1cb109db945bc..37f31697d59aa433d847ded806bf09013d204e10 100644
--- a/lib/coreimpl/linked_hash_map.dart
+++ b/lib/coreimpl/linked_hash_map.dart
@@ -18,7 +18,7 @@ class KeyValuePair<K, V> {
* when iterating over the keys or the values. Updating the value of a
* key does not change the order.
*/
-class LinkedHashMapImplementation<K extends Hashable, V>
+class LinkedHashMapImplementation<K, V>
implements LinkedHashMap<K, V> {
DoubleLinkedQueue<KeyValuePair<K, V>> _list;
HashMap<K, DoubleLinkedQueueEntry<KeyValuePair<K, V>>> _map;
« no previous file with comments | « lib/coreimpl/hash_map_set.dart ('k') | lib/isolate/base.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698