1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 16:43:21 +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) // * libsnooze exists)
// */ // */
/** /* Start the receive queue and send queue managers */
* Start the receive queue and send queue managers
*/
this.receiver.start(); this.receiver.start();
this.sender.start(); this.sender.start();
// while(!receiver.isReady() || !sender.isReady()) {} // while(!receiver.isReady() || !sender.isReady()) {}
/* Set running status to true */ /* Set the running status to true */
running = true; running = true;
/* Start socket loop */ /* Start the socket read-decode loop */
this.start(); this.start();
} }
catch(SocketOSException e) catch(SocketOSException e)