Skip to content

Commit c649ab7

Browse files
committed
Change comment style.
1 parent afa1b16 commit c649ab7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

application/src/main/java/org/opentripplanner/graph_builder/module/DirectTransferGenerator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ public DirectTransferGenerator(
8989

9090
@Override
9191
public void buildGraph() {
92-
/* Initialize transit model index which is needed by the nearby stop finder. */
92+
// Initialize transit model index which is needed by the nearby stop finder.
9393
timetableRepository.index();
9494

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

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

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

0 commit comments

Comments
 (0)