--- a/hotspot/src/share/vm/classfile/classFileParser.cpp Thu Jul 18 03:38:10 2013 -0700
+++ b/hotspot/src/share/vm/classfile/classFileParser.cpp Mon Jul 22 14:01:39 2013 +0100
@@ -4481,9 +4481,8 @@
for (int index = 0; index < num_methods; index++) {
Method* m = methods->at(index);
- // skip private, static and <init> methods
- if ((!m->is_private()) &&
- (!m->is_static()) &&
+ // skip static and <init> methods
+ if ((!m->is_static()) &&
(m->name() != vmSymbols::object_initializer_name())) {
Symbol* name = m->name();