src/hotspot/share/classfile/classLoaderData.cpp
changeset 51530 1f0b605bdc28
parent 51523 73523d329966
child 51543 5303c6c05db6
--- a/src/hotspot/share/classfile/classLoaderData.cpp	Sat Aug 25 14:23:21 2018 +0200
+++ b/src/hotspot/share/classfile/classLoaderData.cpp	Sat Aug 25 11:10:21 2018 -0400
@@ -1254,15 +1254,6 @@
   }
 }
 
-// Walks all entries in the dictionary including entries initiated by this class loader.
-void ClassLoaderDataGraph::dictionary_all_entries_do(void f(InstanceKlass*, ClassLoaderData*)) {
-  Thread* thread = Thread::current();
-  FOR_ALL_DICTIONARY(cld) {
-    Handle holder(thread, cld->holder_phantom());
-    cld->dictionary()->all_entries_do(f);
-  }
-}
-
 void ClassLoaderDataGraph::verify_dictionary() {
   FOR_ALL_DICTIONARY(cld) {
     cld->dictionary()->verify();