Skip to content

Commit

Permalink
Issue #5859 Change after review
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Bartel <janb@webtide.com>
  • Loading branch information
janbartel committed Jan 21, 2021
1 parent a7847d3 commit eed0c2e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -693,7 +693,7 @@ public Thread newThread(Runnable runnable)
thread.setDaemon(isDaemon());
thread.setPriority(getThreadsPriority());
thread.setName(_name + "-" + thread.getId());
thread.setContextClassLoader(this.getClass().getClassLoader());
thread.setContextClassLoader(getClass().getClassLoader());
return thread;
});
}
Expand Down

0 comments on commit eed0c2e

Please sign in to comment.