Started integration of new server architecture
* Removed JAX-RS dependency from POM * Changed version in POM to 0.3-alpha The errors that appear throughout LocalDB and Client are caused by the architecture change and will be removed in future commits.
This commit is contained in:
@ -12,8 +12,8 @@ import javax.swing.SwingUtilities;
|
||||
|
||||
import envoy.client.*;
|
||||
import envoy.client.util.EnvoyLog;
|
||||
import envoy.data.User;
|
||||
import envoy.exception.EnvoyException;
|
||||
import envoy.schema.User;
|
||||
|
||||
/**
|
||||
* Starts the Envoy client and prompts the user to enter their name.<br>
|
||||
@ -129,7 +129,7 @@ public class Startup {
|
||||
JOptionPane.WARNING_MESSAGE);
|
||||
}
|
||||
|
||||
logger.info("Client user ID: " + client.getSender().getID());
|
||||
logger.info("Client user ID: " + client.getSender().getId());
|
||||
|
||||
// Save all users to the local database
|
||||
if (client.isOnline()) localDB.setUsers(client.getUsers());
|
||||
|
Reference in New Issue
Block a user