We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8ac65c commit 7220aa6Copy full SHA for 7220aa6
backend/src/de/unifreiburg/informatik/cobweb/routing/parsing/gtfs/GtfsRealisticTimeExpandedHandler.java
@@ -157,6 +157,12 @@ public void complete() throws IOException {
157
158
while (sequenceIter.hasNext()) {
159
tripStopNodes = sequenceIter.next();
160
+ // The standard allows gaps in-between the external sequence indices. We
161
+ // do not, skip null entries.
162
+ if (tripStopNodes == null) {
163
+ continue;
164
+ }
165
+
166
// Connect last departure to current arrival node
167
final N arrNode = tripStopNodes.getArrNode();
168
final int arrTime = tripStopNodes.getArrTime();
0 commit comments