Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
viljaminurminen-cgi committed Sep 14, 2023
1 parent c488177 commit a9caa84
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,13 @@ public ItineraryFares calculateFares(Itinerary itinerary) {
Currency currency = Currency.getInstance(
fareRules.iterator().next().getFareAttribute().getCurrencyType()
);
boolean feedHasFare =
populateFare(currentFare, currency, fareType, fareLegsByFeed.get(feedId), fareRules);
boolean feedHasFare = populateFare(
currentFare,
currency,
fareType,
fareLegsByFeed.get(feedId),
fareRules
);

if (!feedHasFare) {
legsWithoutMatchingRulesFound = true;
Expand Down

0 comments on commit a9caa84

Please sign in to comment.