Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
loj-hbt committed Feb 8, 2023
1 parent 60319b4 commit 0aad6ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ StopTimesMapperResult mapToStopTimes(

StopPointInJourneyPattern stopPoint = findStopPoint(pointInJourneyPattern, journeyPattern);

if (stopPoint != null && (!stopPoint.isForAlighting() && !stopPoint.isForBoarding())) {
if (stopPoint != null && (isFalse(stopPoint.isForAlighting()) && isFalse(stopPoint.isForBoarding()))) {
continue;
}

Expand Down

0 comments on commit 0aad6ec

Please sign in to comment.