--- old/src/share/vm/classfile/protectionDomainCache.cpp 2017-06-23 19:16:16.007976312 -0400 +++ new/src/share/vm/classfile/protectionDomainCache.cpp 2017-06-23 19:16:15.746347248 -0400 @@ -85,14 +85,14 @@ for (ProtectionDomainCacheEntry* probe = bucket(index); probe != NULL; probe = probe->next()) { + tty->print("%4d: ", index); probe->print(); } } } void ProtectionDomainCacheEntry::print() { - tty->print_cr("entry " PTR_FORMAT " value " PTR_FORMAT " next " PTR_FORMAT, - p2i(this), p2i(literal()), p2i(next())); + tty->print_cr("protection_domain: " PTR_FORMAT, p2i(literal())); } #endif