@@ -9,7 +9,7 @@ import java.net.UnknownHostException;
public class Client {
public Client(){
try {
- Socket client = new Socket("localhost", 5999);
+ Socket client = new Socket("localhost", 5499);
Thread test = new Thread(new Runnable() {
@Override
public void run() {
@@ -2,6 +2,6 @@ package server;
public class Main {
public static void main(String[] args){
- new Server(5999);
+ new Server(5499);
}