We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c55887 commit 065203dCopy full SHA for 065203d
src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java
@@ -1916,7 +1916,7 @@ public String genHTMLForJavaStackTrace(JavaThread thread) {
1916
for (JavaVFrame vf = thread.getLastJavaVFrameDbg(); vf != null; vf = vf.javaSender()) {
1917
Method method = vf.getMethod();
1918
buf.append(" - ");
1919
- buf.append(genMethodLink(method));
+ buf.append(genMethodAndKlassLink(method));
1920
buf.append(" @bci = " + vf.getBCI());
1921
1922
int lineNumber = method.getLineNumberFromBCI(vf.getBCI());
0 commit comments