--- old/src/hotspot/share/utilities/hashtable.hpp 2017-11-01 11:21:48.000000000 -0500 +++ new/src/hotspot/share/utilities/hashtable.hpp 2017-11-01 11:21:48.000000000 -0500 @@ -237,6 +237,8 @@ int number_of_entries() const { return _number_of_entries; } + bool resize(int new_size); + template void verify_table(const char* table_name) PRODUCT_RETURN; }; @@ -281,7 +283,6 @@ HashtableEntry** bucket_addr(int i) { return (HashtableEntry**)BasicHashtable::bucket_addr(i); } - }; template class RehashableHashtable : public Hashtable {