--- old/src/share/vm/classfile/placeholders.cpp 2017-03-08 11:09:59.091014427 -0500 +++ new/src/share/vm/classfile/placeholders.cpp 2017-03-08 11:09:58.765821489 -0500 @@ -194,17 +194,6 @@ } } -// 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