java/com.sap.sailing.domain/src/com/sap/sailing/domain/tracking/impl/TrackedRaceImpl.java
... ...
@@ -590,8 +590,6 @@ public abstract class TrackedRaceImpl extends TrackedRaceWithWindEssentials impl
590 590
markPassingsForCompetitor.put(competitor, new ConcurrentSkipListSet<MarkPassing>(MarkPassingByTimeComparator.INSTANCE));
591 591
final DynamicGPSFixMovingTrackImpl<Competitor> track = new DynamicGPSFixMovingTrackImpl<Competitor>(competitor, millisecondsOverWhichToAverageSpeed);
592 592
tracks.put(competitor, track);
593
- int TODO; // TODO but5959 the following line to temporarily overcome different results of lazy and eager initialization, which is a puzzle that needs to be solved separately
594
- maneuverApproximators.put(competitor, new CourseChangeBasedTrackApproximation(getTrack(competitor), race.getBoatOfCompetitor(competitor).getBoatClass()));
595 593
}
596 594
markPassingsForWaypoint = new ConcurrentHashMap<Waypoint, NavigableSet<MarkPassing>>();
597 595
for (Waypoint waypoint : race.getCourse().getWaypoints()) {