From 40e7a3b2b95dee37b66b55e131038b67d448410f Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sat, 11 Mar 2023 15:13:18 +0200 Subject: [PATCH] Client - Cleaned up comments --- source/birchwood/client/client.d | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 5d358fe..5721d54 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -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)