Index: sdk/lib/collection/hash_map.dart |
diff --git a/sdk/lib/collection/hash_map.dart b/sdk/lib/collection/hash_map.dart |
index 0fe35262cd4d5bab4ecad189e55747cab5321f61..f5fcd8514316cac8db7f30c3aacb0378f2bf1468 100644 |
--- a/sdk/lib/collection/hash_map.dart |
+++ b/sdk/lib/collection/hash_map.dart |
@@ -4,22 +4,6 @@ |
part of dart.collection; |
-class _HashMapTable<K, V> extends _HashTable<K> { |
- static const int _INITIAL_CAPACITY = 8; |
- static const int _VALUE_INDEX = 1; |
- |
- _HashMapTable() : super(_INITIAL_CAPACITY); |
- |
- int get _entrySize => 2; |
- |
- V _value(int offset) => _table[offset + _VALUE_INDEX]; |
- void _setValue(int offset, V value) { _table[offset + _VALUE_INDEX] = value; } |
- |
- _copyEntry(List fromTable, int fromOffset, int toOffset) { |
- _table[toOffset + _VALUE_INDEX] = fromTable[fromOffset + _VALUE_INDEX]; |
- } |
-} |
- |
class HashMap<K, V> implements Map<K, V> { |
external HashMap(); |