Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void validate(NoticeContainer noticeContainer) {
* Trip frequencies overlap.
*
* <p>Trip frequencies must not overlap in time. Two entries X and Y are considered to directly
* overlap if `X.start_time &lt;= Y.start_time` and `Y.start_time &lt; X.end_time`.
* overlap if {@literal X.start_time <= Y.start_time} and {@literal Y.start_time < X.end_time}.
*/
@GtfsValidationNotice(severity = ERROR, files = @FileRefs(GtfsFrequencySchema.class))
static class OverlappingFrequencyNotice extends ValidationNotice {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ static TimeframeKey create(GtfsTimeframe timeframe) {
* overlapping time intervals.
*
* <p>Timeframes with the same group and service dates must not overlap in time. Two entries X and
* Y are considered to directly overlap if `X.start_time &lt;= Y.start_time` and `Y.start_time
* &lt; X.end_time`.
* Y are considered to directly overlap if {@literal X.start_time <= Y.start_time} and {@literal
* Y.start_time < X.end_time}.
*/
@GtfsValidationNotice(severity = ERROR, files = @FileRefs(GtfsFrequencySchema.class))
static class TimeframeOverlapNotice extends ValidationNotice {
Expand Down
Loading