src/hotspot/share/utilities/hashtable.cpp
branchdatagramsocketimpl-branch
changeset 58678 9cf78a70fa4f
parent 54764 865ec913f916
child 58679 9c3209ff7550
--- a/src/hotspot/share/utilities/hashtable.cpp	Thu Oct 17 20:27:44 2019 +0100
+++ b/src/hotspot/share/utilities/hashtable.cpp	Thu Oct 17 20:53:35 2019 +0100
@@ -101,10 +101,8 @@
 }
 
 template <MEMFLAGS F> void BasicHashtable<F>::free_buckets() {
-  if (NULL != _buckets) {
-    FREE_C_HEAP_ARRAY(HashtableBucket, _buckets);
-    _buckets = NULL;
-  }
+  FREE_C_HEAP_ARRAY(HashtableBucket, _buckets);
+  _buckets = NULL;
 }
 
 // For oops and Strings the size of the literal is interesting. For other types, nobody cares.
@@ -306,6 +304,7 @@
 template class BasicHashtable<mtInternal>;
 template class BasicHashtable<mtModule>;
 template class BasicHashtable<mtCompiler>;
+template class BasicHashtable<mtTracing>;
 
 template void BasicHashtable<mtClass>::verify_table<DictionaryEntry>(char const*);
 template void BasicHashtable<mtModule>::verify_table<ModuleEntry>(char const*);