Fixed most warnings

This commit is contained in:
Treeku
2014-04-10 11:52:09 +01:00
parent 62fea5c7cc
commit e91362a12f
63 changed files with 18 additions and 173 deletions
@@ -28,17 +28,14 @@ import org.apache.mina.core.buffer.IoBuffer;
import protocol.swg.ObjControllerMessage;
import resources.common.ConversationOption;
import resources.common.ObjControllerOpcodes;
public class NpcConversationOptions extends ObjControllerObject {
private long npcId;
private long objectId;
private Vector<ConversationOption> conversationOptions = new Vector<ConversationOption>();
public NpcConversationOptions(long objectId, long npcId) {
public NpcConversationOptions(long objectId) {
this.objectId = objectId;
this.npcId = npcId;
}
@Override