Skip to content

Commit

Permalink
6858: Thread dump does not show complete call stack based for all thr…
Browse files Browse the repository at this point in the history
…eads (grouped by time)

Reviewed-by: ghb
  • Loading branch information
Suchita Chaturvedi committed Jul 3, 2020
1 parent 3eb5cb2 commit aeb8ae4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -439,7 +439,7 @@ private static ThreadDumpCollection parseCollection(String title, String str) {
if (parts.length > 2) {
ThreadDump[] dumps = new ThreadDump[parts.length - 2];
ThreadDumpCollection parent = new ThreadDumpCollection(title,
parts[0] + SEPARATOR + parts[parts.length - 1], dumps);
str, dumps);
for (int i = 0; i < dumps.length; i++) {
dumps[i] = parseThreadDump(parts[i + 1], parent);
}
Expand Down

0 comments on commit aeb8ae4

Please sign in to comment.