fixed compilation error after introducing new method on TrackImpl

This commit is contained in:
Axel Uhl
2019-05-18 12:00:54 +02:00
parent 1e7588876d
commit 8109d94ddf
@@ -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;