| Index: sdk/lib/collection/hash_table.dart
|
| diff --git a/sdk/lib/collection/hash_table.dart b/sdk/lib/collection/hash_table.dart
|
| index 7ab52cb91fec9c4efe9c4b0fd494d55abc8374fc..ececc4772574189413bb85c4baa393e1faf59b81 100644
|
| --- a/sdk/lib/collection/hash_table.dart
|
| +++ b/sdk/lib/collection/hash_table.dart
|
| @@ -74,7 +74,7 @@ class _HashTable<K> {
|
| * Create an empty table.
|
| */
|
| List _createTable(int capacity) {
|
| - List table = new List.fixedLength(capacity * _entrySize);
|
| + List table = new List(capacity * _entrySize);
|
| return table;
|
| }
|
|
|
|
|