Skip to content

Commit

Permalink
fix(path details): add back conditional
Browse files Browse the repository at this point in the history
mistakenly deleted
  • Loading branch information
ansoncfit committed Mar 5, 2024
1 parent 8999be6 commit 7b6e513
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public String[] detailsWithGtfsIds (TransitLayer transitLayer, CsvResultOptions
routeJoiner.add(transitLayer.routeString(routes.get(i), csvOptions.routeRepresentation));
boardStopJoiner.add(transitLayer.stopString(stopSequence.boardStops.get(i), csvOptions.stopRepresentation));
alightStopJoiner.add(transitLayer.stopString(stopSequence.alightStops.get(i), csvOptions.stopRepresentation));
if (csvOptions.feedRepresentation != null) {
feedJoiner.add(transitLayer.feedFromStop(stopSequence.boardStops.get(i)));
}
rideTimeJoiner.add(String.format("%.1f", stopSequence.rideTimesSeconds.get(i) / 60f));
Expand Down

0 comments on commit 7b6e513

Please sign in to comment.