From 8fcd859f775dc334aff44e438dd12b017fed1162 Mon Sep 17 00:00:00 2001 From: Michael Tsang Date: Tue, 21 Jan 2025 12:52:30 +0000 Subject: [PATCH] reformat code --- .../updater/trip/TimetableSnapshotSource.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/application/src/main/java/org/opentripplanner/updater/trip/TimetableSnapshotSource.java b/application/src/main/java/org/opentripplanner/updater/trip/TimetableSnapshotSource.java index 6a821bcb4ca..2bf523628d7 100644 --- a/application/src/main/java/org/opentripplanner/updater/trip/TimetableSnapshotSource.java +++ b/application/src/main/java/org/opentripplanner/updater/trip/TimetableSnapshotSource.java @@ -497,11 +497,7 @@ private Result validateAndHandleAddedTrip( // Check whether a start date exists if (!tripDescriptor.hasStartDate()) { // TODO: should we support this and apply update to all days? - debug( - tripId, - serviceDate, - "NEW trip doesn't have a start date in TripDescriptor, skipping." - ); + debug(tripId, serviceDate, "NEW trip doesn't have a start date in TripDescriptor, skipping."); return UpdateError.result(tripId, NO_START_DATE); }