bug5867: removed course areas from LeaderboardBase again; Event still has getLeaderboards()

This commit is contained in:
Axel Uhl
2023-07-28 16:40:15 +02:00
parent 89fb5f184c
commit 365415b635
8 changed files with 18 additions and 46 deletions
@@ -13,13 +13,4 @@ public interface LeaderboardBase extends Named, WithQualifiedObjectIdentifier {
void addLeaderboardChangeListener(LeaderboardChangeListener listener);
void removeLeaderboardChangeListener(LeaderboardChangeListener listener);
/**
* Gets the course areas that the races of this leaderboard are expected to be run on. This can, e.g., be used to
* implement a filter when retrieving leaderboards from an event.
*
* @return the {@link CourseArea} objects on which races of this leaderboard may run; always valid, never
* {@code null}, but may be empty
*/
Iterable<CourseArea> getCourseAreas();
}