We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a3936f commit caa0c12Copy full SHA for caa0c12
debug/org.eclipse.debug.ui.launchview.tests/src/org/eclipse/debug/ui/launchview/tests/TestUtil.java
@@ -264,7 +264,8 @@ private static String dumpRunningOrWaitingJobs(List<Job> jobs) {
264
sb.append(job.getClass().getName());
265
Thread thread = job.getThread();
266
if (thread != null) {
267
- ThreadInfo[] threadInfos = ManagementFactory.getThreadMXBean().getThreadInfo(new long[] { thread.getId() }, true, true);
+ ThreadInfo[] threadInfos = ManagementFactory.getThreadMXBean().getThreadInfo(new long[] {
268
+ thread.threadId() }, true, true);
269
if (threadInfos[0] != null) {
270
sb.append("\nthread info: ").append(threadInfos[0]);
271
}
0 commit comments