Skip to content

Commit

Permalink
Fixes Javadoc building process (#351)
Browse files Browse the repository at this point in the history
The extra semicolon (`;;`) in the import was breaking `mvn javadoc:javadoc`. This change resolves that issue, allowing the command to run again.
  • Loading branch information
aaronbrethorst committed Apr 8, 2024
1 parent 0e1ff4d commit f0515af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package org.onebusaway.transit_data_federation.impl.realtime.gtfs_realtime;

import org.onebusaway.gtfs.model.AgencyAndId;;
import org.onebusaway.gtfs.model.AgencyAndId;
import org.onebusaway.transit_data_federation.services.ConsolidatedStopsService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down

0 comments on commit f0515af

Please sign in to comment.