Skip to content

Commit

Permalink
Forgotten ';' and unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dmos62 committed Sep 11, 2020
1 parent 9c19603 commit 8415c04
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions core/src/main/java/bisq/core/btc/setup/WalletsSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@
import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableList;
import com.google.common.util.concurrent.Service;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.SettableFuture;

import org.apache.commons.lang3.StringUtils;

Expand Down Expand Up @@ -229,7 +226,7 @@ protected void onSetupCompleted() {
peerGroup.setAddPeersFromAddressMessage(false);

peerGroup.addVersionMessageReceivedEventListener((peer, versionMessage) -> {
UserThread.execute(() -> handleConfiguration(peer, versionMessage))
UserThread.execute(() -> handleConfiguration(peer, versionMessage));
});

peerGroup.addConnectedEventListener((peer, peerCount) -> {
Expand Down

0 comments on commit 8415c04

Please sign in to comment.