Skip to content

Commit 77f104a

Browse files
authored
Merge pull request #119 from naviqore/release/v0.5.1
2 parents f6b1e32 + c188221 commit 77f104a

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>ch.naviqore</groupId>
1313
<artifactId>public-transit-service</artifactId>
14-
<version>0.5.0</version>
14+
<version>0.5.1</version>
1515

1616
<name>Public Transit Service</name>
1717
<description>

src/main/java/ch/naviqore/raptor/router/Query.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,6 @@ class Query {
8080
raptorConfig.getDaysToScan());
8181
}
8282

83-
/**
84-
* Check if there are any marked stops in the marked stops mask.
85-
*
86-
* @param markedStopsMask the marked stops mask to check.
87-
* @return true if there are any marked stops, false otherwise.
88-
*/
89-
private static boolean hasMarkedStops(boolean[] markedStopsMask) {
90-
for (boolean b : markedStopsMask) {
91-
if (b) {
92-
return true;
93-
}
94-
}
95-
return false;
96-
}
97-
9883
/**
9984
* Main control flow of the routing algorithm. Spawns from source stops, coordinates route scanning, footpath
10085
* relaxation, and time/label updates in the correct order.

0 commit comments

Comments
 (0)