mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-18 14:55:53 -04: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
@ -148,7 +148,6 @@ public class BitsquareApp extends Application {
|
||||
@Override
|
||||
public void stop() {
|
||||
bitsquareAppModule.close(injector);
|
||||
System.exit(0);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user