forked from MagicBane/Server
Clarity fix in instance variable ordering.
This commit is contained in:
@@ -14,16 +14,16 @@ import java.sql.SQLException;
|
|||||||
|
|
||||||
public class BootySetEntry {
|
public class BootySetEntry {
|
||||||
|
|
||||||
public float dropChance;
|
|
||||||
public int itemBase;
|
|
||||||
|
|
||||||
|
public int itemBase;
|
||||||
|
public float dropChance;
|
||||||
/**
|
/**
|
||||||
* ResultSet Constructor
|
* ResultSet Constructor
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public BootySetEntry(ResultSet rs) throws SQLException {
|
public BootySetEntry(ResultSet rs) throws SQLException {
|
||||||
this.dropChance = (rs.getFloat("dropChance"));
|
|
||||||
this.itemBase = (rs.getInt("itemBase"));
|
this.itemBase = (rs.getInt("itemBase"));
|
||||||
|
this.dropChance = (rs.getFloat("dropChance"));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,16 +14,16 @@ import java.sql.SQLException;
|
|||||||
|
|
||||||
public class EquipmentSetEntry {
|
public class EquipmentSetEntry {
|
||||||
|
|
||||||
public float dropChance;
|
|
||||||
public int itemID;
|
public int itemID;
|
||||||
|
public float dropChance;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ResultSet Constructor
|
* ResultSet Constructor
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public EquipmentSetEntry(ResultSet rs) throws SQLException {
|
public EquipmentSetEntry(ResultSet rs) throws SQLException {
|
||||||
this.dropChance = (rs.getFloat("dropChance"));
|
|
||||||
this.itemID = (rs.getInt("itemID"));
|
this.itemID = (rs.getInt("itemID"));
|
||||||
|
this.dropChance = (rs.getFloat("dropChance"));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user