Fix updating of showTable value

This commit is contained in:
2025-08-23 21:13:15 +02:00
parent 2233c91d8c
commit b29e9a813b
4 changed files with 61 additions and 26 deletions

View File

@@ -53,7 +53,7 @@ public class TLWTeamsCreatorTest {
TLWMatchesCreatorFootball matchesCreator = new TLWMatchesCreatorFootball(2021, 49, "EM-Tippspiel");
ArrayList<TLWMatch> matches = matchesCreator.getMatches();
TLWTeamsCreator teamCreator = new TLWTeamsCreator(2021, 49, matches);
TLWTeamsCreator teamCreator = new TLWTeamsCreator(season, 49, matches);
String sql = teamCreator.getSql();
System.out.println(sql);
}