We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6edb05 commit 7a372a6Copy full SHA for 7a372a6
src/main/java/com/conveyal/gtfs/validator/ValidationResult.java
@@ -26,9 +26,11 @@ public class ValidationResult implements Serializable {
26
27
/**
28
* the actual first and last date of service which is calculated in {@link ServiceValidator#complete}
29
+ * These variables are actually not directly tied to data in the calendar_dates.txt file. Instead, they represent
30
+ * the first and last date respectively of any entry in the calendar.txt and calendar_dates.txt files.
31
*/
- public LocalDate firstDateOfService;
- public LocalDate lastDateOfService;
32
+ public LocalDate firstCalendarDate;
33
+ public LocalDate lastCalendarDate;
34
35
public int[] dailyBusSeconds;
36
public int[] dailyTramSeconds;
0 commit comments