mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 22:19:13 +00:00
bug5876: support TrackedRace.getCourseAreaId() based on race logs attached
This commit is contained in:
+6
@@ -9,6 +9,7 @@ import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import java.util.SortedMap;
|
||||
import java.util.TreeSet;
|
||||
import java.util.UUID;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.function.BiFunction;
|
||||
|
||||
@@ -1388,4 +1389,9 @@ public class MockedTrackedRace implements DynamicTrackedRace {
|
||||
public boolean hasFinishedLoading() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getCourseAreaId() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
+6
@@ -10,6 +10,7 @@ import java.util.Map;
|
||||
import java.util.NavigableSet;
|
||||
import java.util.Set;
|
||||
import java.util.SortedMap;
|
||||
import java.util.UUID;
|
||||
import java.util.function.BiFunction;
|
||||
|
||||
import com.sap.sailing.domain.abstractlog.race.RaceLog;
|
||||
@@ -917,4 +918,9 @@ public class MockedTrackedRaceWithStartTimeAndRanks implements TrackedRace {
|
||||
public boolean hasFinishedLoading() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getCourseAreaId() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user