Skip to content

Commit

Permalink
Fix spelling of realtimeArrival
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Jan 30, 2024
1 parent 6980767 commit 9235518
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static ApiTripTimeShort mapToApi(TripTimeOnDate domain) {
api.stopCount = domain.getStopCount();
api.scheduledArrival = domain.getScheduledArrival();
api.scheduledDeparture = domain.getScheduledDeparture();
api.realimeArrival = domain.getRealtimeArrival();
api.realtimeArrival = domain.getRealtimeArrival();
api.realtimeDeparture = domain.getRealtimeDeparture();
api.arrivalDelay = domain.getArrivalDelay();
api.departureDelay = domain.getDepartureDelay();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class ApiTripTimeShort implements Serializable {
public int stopCount;
public int scheduledArrival = UNDEFINED;
public int scheduledDeparture = UNDEFINED;
public int realimeArrival = UNDEFINED;
public int realtimeArrival = UNDEFINED;
public int realtimeDeparture = UNDEFINED;
public int arrivalDelay = UNDEFINED;
public int departureDelay = UNDEFINED;
Expand Down

0 comments on commit 9235518

Please sign in to comment.