< prev index next >

src/share/vm/classfile/placeholders.cpp

Print this page

        

@@ -192,21 +192,10 @@
   if (_instanceKlass != NULL) {
     closure->do_klass(instance_klass());
   }
 }
 
-// do all entries in the placeholder table
-void PlaceholderTable::entries_do(void f(Symbol*)) {
-  for (int index = 0; index < table_size(); index++) {
-    for (PlaceholderEntry* probe = bucket(index);
-                           probe != NULL;
-                           probe = probe->next()) {
-      f(probe->klassname());
-    }
-  }
-}
-
 
 #ifndef PRODUCT
 // Note, doesn't append a cr
 void PlaceholderEntry::print() const {
   klassname()->print_value();
< prev index next >