1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 00:13:11 +00:00

Fixed compiler warnings

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-14 13:41:15 -03:00
parent 1e52e960f5
commit fddc6fbfbb
9 changed files with 218 additions and 32 deletions

View File

@@ -176,4 +176,199 @@ public class CharacterCreatePacket extends AbstractClientPacket {
conn.write(CharacterCreateOkPacket.INSTANCE);
}
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the race
*/
public Race getRace() {
return race;
}
/**
* @param race
* the race to set
*/
public void setRace(Race race) {
this.race = race;
}
/**
* @return the sex
*/
public Sex getSex() {
return sex;
}
/**
* @param sex
* the sex to set
*/
public void setSex(Sex sex) {
this.sex = sex;
}
/**
* @return the classId
*/
public int getClassId() {
return classId;
}
/**
* @param classId
* the classId to set
*/
public void setClassId(int classId) {
this.classId = classId;
}
/**
* @return the intelligence
*/
public int getIntelligence() {
return intelligence;
}
/**
* @param intelligence
* the intelligence to set
*/
public void setIntelligence(int intelligence) {
this.intelligence = intelligence;
}
/**
* @return the strength
*/
public int getStrength() {
return strength;
}
/**
* @param strength
* the strength to set
*/
public void setStrength(int strength) {
this.strength = strength;
}
/**
* @return the concentration
*/
public int getConcentration() {
return concentration;
}
/**
* @param concentration
* the concentration to set
*/
public void setConcentration(int concentration) {
this.concentration = concentration;
}
/**
* @return the mentality
*/
public int getMentality() {
return mentality;
}
/**
* @param mentality
* the mentality to set
*/
public void setMentality(int mentality) {
this.mentality = mentality;
}
/**
* @return the dexterity
*/
public int getDexterity() {
return dexterity;
}
/**
* @param dexterity
* the dexterity to set
*/
public void setDexterity(int dexterity) {
this.dexterity = dexterity;
}
/**
* @return the witness
*/
public int getWitness() {
return witness;
}
/**
* @param witness
* the witness to set
*/
public void setWitness(int witness) {
this.witness = witness;
}
/**
* @return the hairStyle
*/
public CharacterHairStyle getHairStyle() {
return hairStyle;
}
/**
* @param hairStyle
* the hairStyle to set
*/
public void setHairStyle(CharacterHairStyle hairStyle) {
this.hairStyle = hairStyle;
}
/**
* @return the hairColor
*/
public CharacterHairColor getHairColor() {
return hairColor;
}
/**
* @param hairColor
* the hairColor to set
*/
public void setHairColor(CharacterHairColor hairColor) {
this.hairColor = hairColor;
}
/**
* @return the face
*/
public CharacterFace getFace() {
return face;
}
/**
* @param face
* the face to set
*/
public void setFace(CharacterFace face) {
this.face = face;
}
}

View File

@@ -1,8 +1,6 @@
package com.l2jserver.game.net.packet.client;
import org.jboss.netty.buffer.ChannelBuffer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.l2jserver.game.net.Lineage2Connection;
import com.l2jserver.game.net.packet.AbstractClientPacket;
@@ -18,12 +16,6 @@ public class RequestManorList extends AbstractClientPacket {
public static final int OPCODE1 = 0xd0;
public static final int OPCODE2 = 0x01;
/**
* The logger
*/
private static final Logger log = LoggerFactory
.getLogger(RequestManorList.class);
@Override
public void read(Lineage2Connection conn, ChannelBuffer buffer) {
}

View File

@@ -20,7 +20,7 @@ public class CharacterSelectionListPacket extends AbstractServerPacket {
private final String loginName;
private final int sessionId;
private int lastCharacterId;
// private int lastCharacterId;
private final L2Character[] characters;
public CharacterSelectionListPacket(String loginName, int sessionId,
@@ -28,7 +28,7 @@ public class CharacterSelectionListPacket extends AbstractServerPacket {
super(OPCODE);
this.loginName = loginName;
this.sessionId = sessionId;
this.lastCharacterId = lastCharacterId;
// this.lastCharacterId = lastCharacterId;
this.characters = characters;
}

View File

@@ -17,12 +17,12 @@ public class InventoryPacket extends AbstractServerPacket {
*/
public static final int OPCODE = 0x11;
private CharacterInventory inventory;
// private CharacterInventory inventory;
private boolean showWindow = false;
public InventoryPacket(CharacterInventory inventory) {
super(OPCODE);
this.inventory = inventory;
// this.inventory = inventory;
}
@Override

View File

@@ -3,7 +3,6 @@ package com.l2jserver.model.world;
import com.l2jserver.model.world.capability.Actor;
import com.l2jserver.model.world.capability.Playable;
import com.l2jserver.model.world.capability.Teleportable;
import com.l2jserver.model.world.player.PlayerTeleportEvent;
import com.l2jserver.util.Coordinate;
/**
@@ -16,9 +15,9 @@ public abstract class Player extends AbstractActor implements Playable, Actor,
Teleportable {
@Override
public void teleport(Coordinate coordinate) {
final PlayerTeleportEvent event = new PlayerTeleportEvent(this,
coordinate);
this.setPosition(coordinate);
// final PlayerTeleportEvent event = new PlayerTeleportEvent(this,
// coordinate);
// this.setPosition(coordinate);
// event.dispatch();
}
}

View File

@@ -49,7 +49,8 @@ public class ProxyConfigurationService extends AbstractService implements
@Override
public void start() throws ServiceStartException {
if (!directory.exists())
directory.mkdirs();
if (!directory.mkdirs())
throw new ServiceStartException("Failed to create directories");
}
@Override