changeset 12913:7ec210434b3c

Merge
author chegar
date Mon, 22 Jul 2013 14:01:39 +0100
parents d840f02d03b4 (diff) bb416ee2a79b (current diff)
children ca9029490fce
files src/share/vm/memory/klassInfoClosure.hpp src/share/vm/runtime/aprofiler.cpp src/share/vm/runtime/aprofiler.hpp
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/classfile/classFileParser.cpp	Thu Jul 18 03:38:10 2013 -0700
+++ b/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();