Skip to content

Commit

Permalink
8313631: SA: stack trace printed using "where" command does not show …
Browse files Browse the repository at this point in the history
…class name

Reviewed-by: cjplummer, dholmes
  • Loading branch information
Ashutosh Mehra committed Sep 28, 2023
1 parent 0c55887 commit 065203d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1916,7 +1916,7 @@ public String genHTMLForJavaStackTrace(JavaThread thread) {
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());
Expand Down

1 comment on commit 065203d

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.