Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
+31 -35
View File
@@ -13,54 +13,50 @@ import java.sql.ResultSet;
import java.sql.SQLException;
public class MobBaseEffects {
public class MobBaseEffects {
private int mobBaseID;
private int token;
private int rank;
private int reqLvl;
private int mobBaseID;
private int token;
private int rank;
private int reqLvl;
/**
* ResultSet Constructor
*/
public MobBaseEffects(ResultSet rs) throws SQLException {
this.token = rs.getInt("token");
this.rank = rs.getInt("rank");
this.reqLvl = rs.getInt("reqLvl");
}
/**
* ResultSet Constructor
*/
public MobBaseEffects(ResultSet rs) throws SQLException {
this.token = rs.getInt("token");
this.rank = rs.getInt("rank");
this.reqLvl = rs.getInt("reqLvl");
}
/**
* @return the mobBaseID
*/
public int getMobBaseID() {
return mobBaseID;
}
/**
* @return the mobBaseID
*/
public int getMobBaseID() {
return mobBaseID;
}
public void setMobBaseID(int mobBaseID) {
this.mobBaseID = mobBaseID;
}
public void setMobBaseID(int mobBaseID) {
this.mobBaseID = mobBaseID;
}
public int getToken() {
return token;
}
public int getToken() {
return token;
}
public int getRank() {
return rank;
}
public int getRank() {
return rank;
}
public int getReqLvl() {
return reqLvl;
}
public int getReqLvl() {
return reqLvl;
}
}