Skip to content

Commit 251f475

Browse files
committed
Temporarily revert map layer update
1 parent c475ad4 commit 251f475

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

application/src/ext/java/org/opentripplanner/ext/vectortiles/layers/stops/DigitransitRealtimeStopPropertyMapper.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,13 @@ protected Collection<KeyValue> map(RegularStop stop) {
3939
.findStopTimesInPattern(stop, serviceDate, ArrivalDeparture.BOTH, true)
4040
.stream()
4141
.anyMatch(stopTime -> stopTime.times.size() > 0);
42-
var inService = transitService.hasScheduledServicesAfter(LocalDate.now(), stop);
4342

4443
Collection<KeyValue> sharedKeyValues = getBaseKeyValues(stop, i18NStringMapper, transitService);
4544
return ListUtils.combine(
4645
sharedKeyValues,
4746
List.of(
4847
new KeyValue("closedByServiceAlert", noServiceAlert),
49-
new KeyValue("servicesRunningOnServiceDate", stopTimesExist),
50-
new KeyValue("servicesRunningInFuture", inService)
48+
new KeyValue("servicesRunningOnServiceDate", stopTimesExist)
5149
)
5250
);
5351
}

0 commit comments

Comments
 (0)