Skip to content

Commit

Permalink
Update Stop.java
Browse files Browse the repository at this point in the history
Do not require stops.txt to be present as it is not required for gtfs-flex data.
  • Loading branch information
sharhio authored Jan 15, 2025
1 parent 1ab674e commit 5bf9531
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.onebusaway.gtfs.serialization.mappings.EntityFieldMappingFactory;
import org.onebusaway.gtfs.serialization.mappings.LatLonFieldMappingFactory;

@CsvFields(filename = "stops.txt", prefix = "stop_")
@CsvFields(filename = "stops.txt", prefix = "stop_", required = false)
public final class Stop extends IdentityBean<AgencyAndId> implements StopLocation {

private static final long serialVersionUID = 1L;
Expand Down

0 comments on commit 5bf9531

Please sign in to comment.