--- old/src/share/vm/classfile/classFileParser.cpp 2013-11-19 08:56:30.765314000 -0500 +++ new/src/share/vm/classfile/classFileParser.cpp 2013-11-19 08:56:28.198257000 -0500 @@ -4483,8 +4483,8 @@ for (int index = 0; index < num_methods; index++) { Method* m = methods->at(index); - // skip static and methods - if ((!m->is_static()) && + // skip private, static, and methods + if ((!m->is_private() && !m->is_static()) && (m->name() != vmSymbols::object_initializer_name())) { Symbol* name = m->name();