Add several improvements for EM

This commit is contained in:
2024-06-08 00:12:59 +02:00
parent d19cb5561b
commit 4c2650454b
10 changed files with 215 additions and 57 deletions
@@ -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":