mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-27 07:56:38 +00:00
fixed compilation error after introducing new method on TrackImpl
This commit is contained in:
+6
@@ -159,6 +159,12 @@ public class NoAddingRaceLogWrapper implements RaceLog {
|
||||
return innerRaceLog.getRawFixesIterator(startingAt, inclusive);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterator<RaceLogEvent> getRawFixesIterator(TimePoint startingAt, boolean startingAtInclusive,
|
||||
TimePoint endingAt, boolean endingAtInclusive) {
|
||||
return innerRaceLog.getRawFixesIterator(startingAt, startingAtInclusive, endingAt, endingAtInclusive);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Serializable getId() {
|
||||
return innerRaceLog;
|
||||
|
||||
Reference in New Issue
Block a user