1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 13:22:52 +02:00
- Removed commented-out code
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-16 08:37:04 +02:00
parent 93fecfaad5
commit d2acd08a98

View File

@ -727,25 +727,6 @@ public class Client : Thread
receiver.rq(message); 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 * Sends a message to the server by enqueuing it on
* the client-side send queue. * the client-side send queue.