diff --git a/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java b/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java index 004ba28bf31..cc7b8cf33c2 100644 --- a/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java +++ b/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java @@ -1916,7 +1916,7 @@ public class HTMLGenerator implements /* imports */ ClassConstants { for (JavaVFrame vf = thread.getLastJavaVFrameDbg(); vf != null; vf = vf.javaSender()) { Method method = vf.getMethod(); buf.append(" - "); - buf.append(genMethodLink(method)); + buf.append(genMethodAndKlassLink(method)); buf.append(" @bci = " + vf.getBCI()); int lineNumber = method.getLineNumberFromBCI(vf.getBCI());