Skip to content

Commit

Permalink
DaemonProcess: Remove Bisq 2 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Sep 20, 2024
1 parent d85bda1 commit 5d121d6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

package bisq.wallets.regtest.process;

import bisq.common.threading.ThreadName;
import bisq.wallets.regtest.LogScanner;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
Expand Down Expand Up @@ -63,7 +62,7 @@ public void shutdown() {

protected void waitUntilReady() {
FutureTask<Boolean> waitingFuture = new FutureTask<>(() -> {
ThreadName.set(this, "waitUntilLogContainsLines");
Thread.currentThread().setName("waitUntilLogContainsLines");
return waitUntilLogContainsLines();
});
Thread waitingThread = new Thread(waitingFuture);
Expand Down

0 comments on commit 5d121d6

Please sign in to comment.