Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index ffe4d65afd180385b0805d72770b15c2b471c8b7..3a9fe2991decc352c34f79a0635ce1968a57539f 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -2996,13 +2996,6 @@ int HashTableBase::ComputeCapacity(int at_least_space_for) { |
} |
-int HashTableBase::ComputeCapacityForSerialization(int at_least_space_for) { |
- const int kMinCapacity = 1; |
- int capacity = base::bits::RoundUpToPowerOfTwo32(at_least_space_for); |
- return Max(capacity, kMinCapacity); |
-} |
- |
- |
template <typename Derived, typename Shape, typename Key> |
int HashTable<Derived, Shape, Key>::FindEntry(Key key) { |
return FindEntry(GetIsolate(), key); |