From d2acd08a9871fc6e8ffd03e0ed05ddb52864c554 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 16 Mar 2023 08:37:04 +0200 Subject: [PATCH] Client - Removed commented-out code --- source/birchwood/client/client.d | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 31b78fb..2b0bbc1 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -727,25 +727,6 @@ public class Client : Thread receiver.rq(message); } - // /** - // * Sends a message to the server by enqueuing it on - // * the client-side send queue - // * - // * Params: - // * messageOut = the message to send - // */ - // private void sendMessage(string messageOut) - // { - // // TODO: Do message splits here - - - // /* Encode the mesage */ - // ubyte[] encodedMessage = encodeMessage(messageOut); - - // /* Enqueue the message to the send queue */ - // sender.sq(encodedMessage); - // } - /** * Sends a message to the server by enqueuing it on * the client-side send queue.