Skip to content

Commit

Permalink
flighdata-skyalps-gtfs: fix calendar.txt rows ending
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed Jan 23, 2024
1 parent 48dfd1f commit cc87964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static void writeCalendar(ArrayList<CalendarValues> calendarValuesList)
writer.write(calendarValues.getSaturday() + ",");
writer.write(calendarValues.getSunday() + ",");
writer.write(calendarValues.getStart_date() + ",");
writer.write(calendarValues.getEnd_date() + ",");
writer.write(calendarValues.getEnd_date());
writer.write(System.getProperty("line.separator"));

}
Expand Down

0 comments on commit cc87964

Please sign in to comment.