1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-13 10:42:54 +00:00

Source formatting

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-13 11:29:56 -03:00
parent e071ced9b2
commit 15fa8d389f
17 changed files with 42 additions and 41 deletions

View File

@@ -22,9 +22,9 @@ public interface CharacterAttributes {
public int getMentality();
/**
* @return the dextry
* @return the dexterity
*/
public int getDextry();
public int getDexterity();
/**
* @return the witness

View File

@@ -25,7 +25,7 @@ public class CharacterBaseAttributes implements CharacterAttributes {
/**
* The character dextry
*/
private final int dextry;
private final int dexterity;
/**
* The character witness
*/
@@ -132,7 +132,7 @@ public class CharacterBaseAttributes implements CharacterAttributes {
this.strength = strength;
this.concentration = concentration;
this.mentality = mentality;
this.dextry = dextry;
this.dexterity = dextry;
this.witness = witness;
this.physicalAttack = physicalAttack;
this.magicalAttack = magicalAttack;
@@ -179,8 +179,8 @@ public class CharacterBaseAttributes implements CharacterAttributes {
/**
* @return the dextry
*/
public int getDextry() {
return dextry;
public int getDexterity() {
return dexterity;
}
/**

View File

@@ -27,8 +27,8 @@ public class CharacterCalculatedAttributes implements CharacterAttributes {
return baseAttributes.getMentality();
}
public int getDextry() {
return baseAttributes.getDextry();
public int getDexterity() {
return baseAttributes.getDexterity();
}
public int getWitness() {