Rework Google Auth and add Supercup
This commit is contained in:
@@ -40,7 +40,7 @@ public class TLWMatchesCreatorTipperPokal extends TLWMatchesCreatorBase{
|
||||
|
||||
int matchday = 1;
|
||||
|
||||
for(int matchNo = 1; matchNo < 13; matchNo++) {
|
||||
for(int matchNo = 1; matchNo <= this.tipperList.size() / 2; matchNo++) {
|
||||
|
||||
String homeName = this.tipperList.get(String.valueOf(2 * matchNo - 1)).toString();
|
||||
String guestName = this.tipperList.get(String.valueOf(2 * matchNo)).toString();
|
||||
@@ -51,6 +51,7 @@ public class TLWMatchesCreatorTipperPokal extends TLWMatchesCreatorBase{
|
||||
String matchDatetime = getDeliveryDateForMatchday(matchday);
|
||||
|
||||
TLWMatch tlwMatch = new TLWMatch(this.season, this.league, matchday, matchNo, teamIdHome, teamIdGuest, matchDatetime, 1);
|
||||
tlwMatch.setShowTable(false);
|
||||
this.TLWMatches.add(tlwMatch);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user