1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 13:22:52 +02:00
- Cleaned up comments
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-11 15:13:18 +02:00
parent 97220b7f99
commit 40e7a3b2b9

View File

@ -586,17 +586,15 @@ public class Client : Thread
// * libsnooze exists)
// */
/**
* Start the receive queue and send queue managers
*/
/* Start the receive queue and send queue managers */
this.receiver.start();
this.sender.start();
// while(!receiver.isReady() || !sender.isReady()) {}
/* Set running status to true */
/* Set the running status to true */
running = true;
/* Start socket loop */
/* Start the socket read-decode loop */
this.start();
}
catch(SocketOSException e)