Skip to content

Commit

Permalink
formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
qcdyx committed Sep 24, 2024
1 parent 7cea7a4 commit d9d0b74
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ private void loadFeedInfo(GtfsTableContainer<GtfsFeedInfo> feedTable) {
feedInfo.put(FEED_INFO_PUBLISHER_URL, info == null ? "N/A" : info.feedPublisherUrl());
feedInfo.put(FEED_INFO_FEED_CONTACT_EMAIL, info == null ? "N/A" : info.feedContactEmail());
feedInfo.put(
FEED_INFO_FEED_LANGUAGE, info == null ? "N/A" : info.feedLang().getDisplayLanguage());
FEED_INFO_FEED_LANGUAGE, info == null ? "N/A" : info.feedLang().getDisplayLanguage());
if (feedTable.hasColumn(GtfsFeedInfo.FEED_START_DATE_FIELD_NAME)) {
if (info != null) {
LocalDate localDate = info.feedStartDate().getLocalDate();
Expand All @@ -404,7 +404,6 @@ private String checkLocalDate(LocalDate localDate) {
displayDate = "N/A";
} else {
displayDate = localDate.toString();

}
return displayDate;
}
Expand Down

0 comments on commit d9d0b74

Please sign in to comment.