Skip to content

Commit c188221

Browse files
committed
REFACTOR: Remove unused method in Query object.
1 parent 1af2854 commit c188221

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

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)