mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Remove dev logs, remove unread property
This commit is contained in:
parent
21ff2df232
commit
0e8704e74f
1 changed files with 0 additions and 4 deletions
|
@ -121,7 +121,6 @@ public class P2PService implements SetupListener, MessageListener, ConnectionLis
|
||||||
private final BooleanProperty preliminaryDataReceived = new SimpleBooleanProperty();
|
private final BooleanProperty preliminaryDataReceived = new SimpleBooleanProperty();
|
||||||
private final IntegerProperty numConnectedPeers = new SimpleIntegerProperty(0);
|
private final IntegerProperty numConnectedPeers = new SimpleIntegerProperty(0);
|
||||||
|
|
||||||
private boolean shutDownComplete;
|
|
||||||
private final Subscription networkReadySubscription;
|
private final Subscription networkReadySubscription;
|
||||||
private boolean isBootstrapped;
|
private boolean isBootstrapped;
|
||||||
private final KeepAliveManager keepAliveManager;
|
private final KeepAliveManager keepAliveManager;
|
||||||
|
@ -221,7 +220,6 @@ public class P2PService implements SetupListener, MessageListener, ConnectionLis
|
||||||
}
|
}
|
||||||
|
|
||||||
private void doShutDown() {
|
private void doShutDown() {
|
||||||
log.error("doShutDown");
|
|
||||||
if (p2PDataStorage != null) {
|
if (p2PDataStorage != null) {
|
||||||
p2PDataStorage.shutDown();
|
p2PDataStorage.shutDown();
|
||||||
}
|
}
|
||||||
|
@ -249,11 +247,9 @@ public class P2PService implements SetupListener, MessageListener, ConnectionLis
|
||||||
if (networkNode != null) {
|
if (networkNode != null) {
|
||||||
networkNode.shutDown(() -> {
|
networkNode.shutDown(() -> {
|
||||||
shutDownResultHandlers.forEach(Runnable::run);
|
shutDownResultHandlers.forEach(Runnable::run);
|
||||||
shutDownComplete = true;
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
shutDownResultHandlers.forEach(Runnable::run);
|
shutDownResultHandlers.forEach(Runnable::run);
|
||||||
shutDownComplete = true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue