mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 22:19:13 +00:00
Fixes invalid header shown
This commit is contained in:
+2
-2
@@ -160,8 +160,8 @@ public class RaceFilter extends Filter {
|
||||
if (!fleetItemCount.containsKey(fleetName)) {
|
||||
fleetItemCount.put(fleetName, 0);
|
||||
}
|
||||
int count = fleetItemCount.get(fleetName);
|
||||
fleetItemCount.put(fleetName, count++);
|
||||
int count = fleetItemCount.get(fleetName) + 1;
|
||||
fleetItemCount.put(fleetName, count);
|
||||
}
|
||||
|
||||
private void filterByFinalOrMedal(Map<String, Boolean> finalsStarted, List<RaceListDataTypeHeader> headersToRemove,
|
||||
|
||||
Reference in New Issue
Block a user