Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
@@ -7,7 +7,6 @@
// www.magicbane.com
package engine.net.client.msg;
@@ -28,7 +27,7 @@ public class ArcSiegeSpireMsg extends ClientNetMsg {
* past the limit) then this constructor Throws that Exception to the
* caller.
*/
public ArcSiegeSpireMsg(AbstractConnection origin, ByteBufferReader reader) {
public ArcSiegeSpireMsg(AbstractConnection origin, ByteBufferReader reader) {
super(Protocol.ARCSIEGESPIRE, origin, reader);
}
@@ -40,7 +39,7 @@ public class ArcSiegeSpireMsg extends ClientNetMsg {
* Deserializes the subclass specific items from the supplied NetMsgReader.
*/
@Override
protected void _deserialize(ByteBufferReader reader) {
protected void _deserialize(ByteBufferReader reader) {
reader.getInt(); // object type padding
this.buildingUUID = reader.getInt();
}
@@ -56,5 +55,5 @@ public class ArcSiegeSpireMsg extends ClientNetMsg {
public int getBuildingUUID() {
return buildingUUID;
}
}