Skip to content

Commit

Permalink
Merge pull request #119 from naviqore/release/v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
munterfi authored Sep 17, 2024
2 parents f6b1e32 + c188221 commit 77f104a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
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

0 comments on commit 77f104a

Please sign in to comment.