Skip to content

Commit

Permalink
Change comment style.
Browse files Browse the repository at this point in the history
  • Loading branch information
VillePihlava committed Jan 16, 2025
1 parent afa1b16 commit c649ab7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ public DirectTransferGenerator(

@Override
public void buildGraph() {
/* Initialize transit model index which is needed by the nearby stop finder. */
// Initialize transit model index which is needed by the nearby stop finder.
timetableRepository.index();

/* The linker will use streets if they are available, or straight-line distance otherwise. */
// The linker will use streets if they are available, or straight-line distance otherwise.
NearbyStopFinder nearbyStopFinder = createNearbyStopFinder(defaultMaxTransferDuration);

List<TransitStopVertex> stops = graph.getVerticesOfType(TransitStopVertex.class);
Expand Down Expand Up @@ -301,7 +301,7 @@ private TransferConfiguration parseTransferParameters(NearbyStopFinder nearbySto
List<RouteRequest> carsAllowedStopTransferRequests = new ArrayList<>();
List<RouteRequest> flexTransferRequests = new ArrayList<>();
HashMap<StreetMode, NearbyStopFinder> defaultNearbyStopFinderForMode = new HashMap<>();
/* These are used for calculating transfers only between carsAllowedStops. */
// These are used for calculating transfers only between carsAllowedStops.
HashMap<StreetMode, NearbyStopFinder> carsAllowedStopNearbyStopFinderForMode = new HashMap<>();

// Check that the mode specified in transferParametersForMode can also be found in transferRequests.
Expand Down

0 comments on commit c649ab7

Please sign in to comment.