removeData method

master
Alex 2022-01-02 20:59:53 +01:00
parent 2b417225b5
commit abfba326c5
1 changed files with 5 additions and 0 deletions

View File

@ -129,4 +129,9 @@ public class KraSocketClientProtocol {
return new KraSocketClientProtocolMessage(status, cmdID, dest,
Formatter.stringToUuid(playerUuid).toString(), cmdNumber, args);
}
public void removeData(int cmdID) {
this.cmdIDs.remove(cmdID);
this.consumerHashMap.remove(cmdID);
}
}