mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Move common specific setup code to CommonSetup
This commit is contained in:
parent
8752b3ebac
commit
c4ab1f6024
1 changed files with 3 additions and 1 deletions
|
@ -58,6 +58,7 @@ import bisq.common.UserThread;
|
|||
import bisq.common.app.DevEnv;
|
||||
import bisq.common.handlers.ResultHandler;
|
||||
import bisq.common.proto.persistable.PersistedDataHost;
|
||||
import bisq.common.setup.CommonSetup;
|
||||
import bisq.common.storage.Storage;
|
||||
import bisq.common.util.Profiler;
|
||||
import bisq.common.util.Utilities;
|
||||
|
@ -125,7 +126,8 @@ public class BisqApp extends Application {
|
|||
|
||||
shutDownHandler = this::stop;
|
||||
|
||||
CoreSetup.setup(bisqEnvironment, this::showErrorPopup);
|
||||
CommonSetup.setup(this::showErrorPopup);
|
||||
CoreSetup.setup(bisqEnvironment);
|
||||
}
|
||||
|
||||
@SuppressWarnings("PointlessBooleanExpression")
|
||||
|
|
Loading…
Add table
Reference in a new issue