1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 06:03:29 +02:00
- Added TODOs where the Eventy calls must be temporarily removed (for now)
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-08 17:19:21 +02:00
parent 8812e247cb
commit 241f7753f5

View File

@ -880,6 +880,7 @@ public class Client : Thread
// logger.log("Ponged"); // logger.log("Ponged");
/* TODO: Implement */ /* TODO: Implement */
// TODO: Remove the Eventy push and replace with a handler call
Event pongEvent = new PongEvent(pingID); Event pongEvent = new PongEvent(pingID);
engine.push(pongEvent); engine.push(pongEvent);
} }
@ -901,6 +902,7 @@ public class Client : Thread
/* TODO: Parse message and call correct handler */ /* TODO: Parse message and call correct handler */
curMsg = Message.parseReceivedMessage(messageNormal); curMsg = Message.parseReceivedMessage(messageNormal);
// TODO: Remove the Eventy push and replace with a handler call
Event ircEvent = new IRCEvent(curMsg); Event ircEvent = new IRCEvent(curMsg);
engine.push(ircEvent); engine.push(ircEvent);
} }