Skip to content

Commit

Permalink
Non-change to trip another unit test run
Browse files Browse the repository at this point in the history
  • Loading branch information
saintstack committed May 21, 2022
1 parent fd5ba66 commit 4593ac0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,9 @@ public Thread newThread(Runnable r) {
synchronized (this) {
thisIndex = counter++;
}
Thread t = new Thread(r,
"Async disk worker #" + thisIndex + " for volume " + volume);
Thread t = new Thread(r);
t.setName("Async disk worker #" + thisIndex +
" for volume " + volume);
return t;
}
};
Expand Down

0 comments on commit 4593ac0

Please sign in to comment.