Skip to content

Commit 065203d

Browse files
author
Ashutosh Mehra
committedSep 28, 2023
8313631: SA: stack trace printed using "where" command does not show class name
Reviewed-by: cjplummer, dholmes
1 parent 0c55887 commit 065203d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,7 @@ public String genHTMLForJavaStackTrace(JavaThread thread) {
19161916
for (JavaVFrame vf = thread.getLastJavaVFrameDbg(); vf != null; vf = vf.javaSender()) {
19171917
Method method = vf.getMethod();
19181918
buf.append(" - ");
1919-
buf.append(genMethodLink(method));
1919+
buf.append(genMethodAndKlassLink(method));
19201920
buf.append(" @bci = " + vf.getBCI());
19211921

19221922
int lineNumber = method.getLineNumberFromBCI(vf.getBCI());

0 commit comments

Comments
 (0)
Please sign in to comment.