Cleanup of handler super calls

This commit is contained in:
2024-03-29 06:35:17 -04:00
parent 1acb74ade1
commit 41f77364aa
3 changed files with 7 additions and 6 deletions
@@ -12,13 +12,12 @@ import engine.exception.MsgSendException;
import engine.gameManager.PowersManager;
import engine.net.client.ClientConnection;
import engine.net.client.msg.ClientNetMsg;
import engine.net.client.msg.KeepAliveServerClientMsg;
import engine.net.client.msg.PerformActionMsg;
public class PerformActionMsgHandler extends AbstractClientMsgHandler {
public PerformActionMsgHandler() {
super(KeepAliveServerClientMsg.class);
super(PerformActionMsg.class);
}
@Override