Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>ch.naviqore</groupId>
<artifactId>public-transit-service</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>

<name>Public Transit Service</name>
<description>
Expand Down
15 changes: 0 additions & 15 deletions src/main/java/ch/naviqore/raptor/router/Query.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,6 @@ class Query {
raptorConfig.getDaysToScan());
}

/**
* Check if there are any marked stops in the marked stops mask.
*
* @param markedStopsMask the marked stops mask to check.
* @return true if there are any marked stops, false otherwise.
*/
private static boolean hasMarkedStops(boolean[] markedStopsMask) {
for (boolean b : markedStopsMask) {
if (b) {
return true;
}
}
return false;
}

/**
* Main control flow of the routing algorithm. Spawns from source stops, coordinates route scanning, footpath
* relaxation, and time/label updates in the correct order.
Expand Down