mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 07:27:18 +01:00
Remove System#exit call from BitsquareApp#stop
Calling System#exit short-circuits normal error reporting, meaning that when an exception is called within the scope of executing the Application's #start method, the message Exception in Application start method is printed to the console, but without a stack trace. Removing the System#exit call allows JavaFX's LauncherImpl to continue processing the exception, ultimately printing out the stack trace as expected.
This commit is contained in:
parent
380e8baf58
commit
fe667bc1b2
1 changed files with 0 additions and 1 deletions
|
@ -148,7 +148,6 @@ public class BitsquareApp extends Application {
|
|||
@Override
|
||||
public void stop() {
|
||||
bitsquareAppModule.close(injector);
|
||||
System.exit(0);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue