From dd29c25d4ff662c2060a667596b71602781ebb59 Mon Sep 17 00:00:00 2001 From: jdomingu98 Date: Sun, 21 Apr 2024 19:08:01 +0200 Subject: [PATCH] doc(join command): Deleted test cases comment --- src/commands/JoinCommand.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/commands/JoinCommand.cpp b/src/commands/JoinCommand.cpp index 7683012..25fe5b2 100644 --- a/src/commands/JoinCommand.cpp +++ b/src/commands/JoinCommand.cpp @@ -94,16 +94,6 @@ void JoinCommand::sendMessages(int clientFd, Channel &channel) const { server.sendMessage(clientFd, RPL_END_OF_NAMES(nickname, username, hostname, channelName)); } -/** ----------------TESTING------------- - * JOIN (#/&)channel password -> joins channel with password if it's correct - * JOIN #c1,#c2 password -> password for c1, none for c2 - * JOIN #c1,#c2 password, -> password for c1, none for c2 ??? - * JOIN #c1,#c2 password1,password2 -> password1 for c1, password2 for c2 - * JOIN #c1,#c2 ,password -> none for c1, password for c2?? - * JOIN #c1,,#c2 password1,,password2 -> ignored "channel" between commas - * JOIN #c1,,#c2 password1,password2 -> idk what happens here ¿¿¿??? - */ - /** * Executes the command JOIN. *