Skip to content

Commit

Permalink
Remove unnecessary log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Mar 3, 2025
1 parent dcdb0fc commit 0dea564
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
import org.opentripplanner.transit.model.timetable.Direction;
import org.opentripplanner.transit.model.timetable.Trip;
import org.opentripplanner.transit.model.timetable.TripTimes;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

// TODO OTP2 instances of this class are still mutable after construction with a builder, this will be refactored in a subsequent step
/**
Expand Down Expand Up @@ -58,8 +56,6 @@ public final class TripPattern
extends AbstractTransitEntity<TripPattern, TripPatternBuilder>
implements Cloneable, LogInfo {

private static final Logger LOG = LoggerFactory.getLogger(TripPattern.class);

private final Route route;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@
import org.opentripplanner.updater.GraphUpdaterStatus;
import org.opentripplanner.utils.collection.CollectionsView;
import org.opentripplanner.utils.time.ServiceDateUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Default implementation of the Transit Service and Transit Editor Service.
Expand All @@ -82,7 +80,6 @@
*/
public class DefaultTransitService implements TransitEditorService {

private static final Logger LOG = LoggerFactory.getLogger(DefaultTransitService.class);
private final TimetableRepository timetableRepository;

private final TimetableRepositoryIndex timetableRepositoryIndex;
Expand Down

0 comments on commit 0dea564

Please sign in to comment.