Clean-up, moved Settings and SettingsItem into the data package

This commit is contained in:
2020-02-12 07:12:22 +01:00
parent c5389a6af4
commit c697b099ee
15 changed files with 31 additions and 32 deletions

View File

@ -11,7 +11,6 @@ import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.SwingUtilities;
import envoy.client.Settings;
import envoy.client.data.*;
import envoy.client.net.Client;
import envoy.client.net.WriteProxy;
@ -79,7 +78,7 @@ public class Startup {
LoginCredentials credentials = config.hasLoginCredentials() ? config.getLoginCredentials() : new LoginDialog().getCredentials();
if (credentials == null) {
logger.info("The login process has been aborted by the user. Exiting...");
logger.info("The login process has been cancelled. Exiting...");
System.exit(0);
}