diff --git a/application/src/main/java/org/opentripplanner/graph_builder/module/DirectTransferGenerator.java b/application/src/main/java/org/opentripplanner/graph_builder/module/DirectTransferGenerator.java index 0ea7d30f25a..b8f8a88af6c 100644 --- a/application/src/main/java/org/opentripplanner/graph_builder/module/DirectTransferGenerator.java +++ b/application/src/main/java/org/opentripplanner/graph_builder/module/DirectTransferGenerator.java @@ -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 stops = graph.getVerticesOfType(TransitStopVertex.class); @@ -301,7 +301,7 @@ private TransferConfiguration parseTransferParameters(NearbyStopFinder nearbySto List carsAllowedStopTransferRequests = new ArrayList<>(); List flexTransferRequests = new ArrayList<>(); HashMap defaultNearbyStopFinderForMode = new HashMap<>(); - /* These are used for calculating transfers only between carsAllowedStops. */ + // These are used for calculating transfers only between carsAllowedStops. HashMap carsAllowedStopNearbyStopFinderForMode = new HashMap<>(); // Check that the mode specified in transferParametersForMode can also be found in transferRequests.