Fixed all compilation bugs.

This commit is contained in:
Tristan B. Kildaire 2020-07-27 14:57:09 +02:00
parent 785113e5f8
commit e9a5af7863
1 changed files with 2 additions and 2 deletions

View File

@ -36,10 +36,10 @@ public class IPv4Listener : ButterflyListener
Socket clientConnection = serverSocket.accept();
ButterflyClient client = new ButterflyClient();
ButterflyClient client = new ButterflyClient(this, clientConnection);
/* Start the client handler */
butterflyClient.start();
client.start();
}
}
}