forked from MagicBane/Server
Removed custom exception candy
This commit is contained in:
@@ -12,7 +12,6 @@ package engine.objects;
|
||||
import engine.InterestManagement.InterestManager;
|
||||
import engine.InterestManagement.Terrain;
|
||||
import engine.InterestManagement.WorldGrid;
|
||||
import engine.exception.SerializationException;
|
||||
import engine.gameManager.*;
|
||||
import engine.job.AbstractJob;
|
||||
import engine.job.JobContainer;
|
||||
@@ -386,14 +385,14 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
|
||||
return 5000;
|
||||
}
|
||||
|
||||
public static void _serializeForClientMsg(AbstractCharacter abstractCharacter, final ByteBufferWriter writer) throws SerializationException {
|
||||
public static void _serializeForClientMsg(AbstractCharacter abstractCharacter, final ByteBufferWriter writer) {
|
||||
AbstractCharacter.__serializeForClientMsg(abstractCharacter, writer);
|
||||
}
|
||||
|
||||
public static void __serializeForClientMsg(AbstractCharacter abstractCharacter, final ByteBufferWriter writer) throws SerializationException {
|
||||
public static void __serializeForClientMsg(AbstractCharacter abstractCharacter, final ByteBufferWriter writer) {
|
||||
}
|
||||
|
||||
public static void serializeForClientMsgOtherPlayer(AbstractCharacter abstractCharacter, final ByteBufferWriter writer, final boolean asciiLastName) throws SerializationException {
|
||||
public static void serializeForClientMsgOtherPlayer(AbstractCharacter abstractCharacter, final ByteBufferWriter writer, final boolean asciiLastName) {
|
||||
|
||||
switch (abstractCharacter.getObjectType()) {
|
||||
case PlayerCharacter:
|
||||
|
||||
Reference in New Issue
Block a user