Add several improvements for EM
This commit is contained in:
@@ -11,7 +11,6 @@ public class APIFootballMatch extends BaseMatch {
|
||||
private String teamNameHome;
|
||||
private String teamNameGuest;
|
||||
private String round;
|
||||
private Boolean showTable = null;
|
||||
|
||||
public APIFootballMatch(JSONObject json, int season) throws Exception {
|
||||
this.matchId = Integer.parseInt(json.get("fixture_id").toString());
|
||||
@@ -73,14 +72,6 @@ public class APIFootballMatch extends BaseMatch {
|
||||
return this.round;
|
||||
}
|
||||
|
||||
public void setShowTable(boolean showTable) {
|
||||
this.showTable = showTable;
|
||||
}
|
||||
|
||||
public Boolean getShowTable() {
|
||||
return this.showTable;
|
||||
}
|
||||
|
||||
private int parseStatus(String statusShort) {
|
||||
switch (statusShort) {
|
||||
case "TBD":
|
||||
|
||||
Reference in New Issue
Block a user