Merge remote-tracking branch 'origin/main'

# Conflicts:
#	src/main/java/de/jeyp91/tippliga/TLWMatchesResultsUpdater.java
#	src/test/java/de/jeyp91/tippliga/TLWMatchesResultsUpdaterTest.java
This commit is contained in:
2023-06-06 15:49:54 +02:00
2 changed files with 3 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
package de.jeyp91.tippliga;
import de.jeyp91.StatusHolder;
import de.jeyp91.apifootball.APIFootballMatch;
import de.jeyp91.apifootball.APIFootballMatchesProvider;
import de.jeyp91.teamidmatcher.TeamIDMatcher;
@@ -12,9 +11,7 @@ import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import java.io.IOException;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
public class TLWMatchesResultsUpdater extends TLWMatchesManagerBase {
@@ -23,7 +20,7 @@ public class TLWMatchesResultsUpdater extends TLWMatchesManagerBase {
ArrayList<ArrayList<TLWMatch>> tlwMatchesUpdated = new ArrayList<>();
private String beautifulInfo = "";
String beautifulInfo = "";
public TLWMatchesResultsUpdater(int season, int league, String configFileName) {
this.season = season;

View File

@@ -6,8 +6,8 @@ public class TLWMatchesResultsUpdaterTest {
@Test
public void updateResultsTest1() {
TLWMatchesResultsUpdater updater = new TLWMatchesResultsUpdater(2023, 2, "Tippliga");
System.out.println(updater.getBeautifulInfo());
// TLWMatchesResultsUpdater updater = new TLWMatchesResultsUpdater(2023, 2, "Tippliga");
System.out.println("Done");
return;
}
}