Skip to content

Commit

Permalink
fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
abyrd committed Jan 7, 2015
1 parent 974000e commit 296858a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -28,7 +28,7 @@ public class StopTreeCache {
final int timeCutoffMinutes; final int timeCutoffMinutes;
private final Map<TransitStop, TObjectIntMap<Vertex>> distancesForStop = Maps.newHashMap(); private final Map<TransitStop, TObjectIntMap<Vertex>> distancesForStop = Maps.newHashMap();


public StopTreeCache (Graph graph, int q) { public StopTreeCache (Graph graph, int timeCutoffMinutes) {
this.timeCutoffMinutes = timeCutoffMinutes; this.timeCutoffMinutes = timeCutoffMinutes;
LOG.info("Caching distances to nearby street intersections from each transit stop..."); LOG.info("Caching distances to nearby street intersections from each transit stop...");
for (TransitStop tstop : graph.index.stopVertexForStop.values()) { for (TransitStop tstop : graph.index.stopVertexForStop.values()) {
Expand Down

0 comments on commit 296858a

Please sign in to comment.