Add several improvements for EM

This commit is contained in:
2024-06-08 00:12:59 +02:00
parent 10b5cc2f9c
commit 1889be5b14
10 changed files with 215 additions and 57 deletions

View File

@@ -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":