Formatting android/src/com/mapswithme/maps/widget/placepage/PlaceOpeningHoursAdapter.java

Co-authored-by: Alexander Borsuk <170263+biodranik@users.noreply.github.com>
Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
Sergiy Kozyr 2022-02-14 14:10:19 +02:00 committed by Viktor Govako
parent 3ad0bc5c9f
commit 2ea51603d8

View file

@ -58,7 +58,7 @@ public class PlaceOpeningHoursAdapter extends RecyclerView.Adapter<PlaceOpeningH
// Search next working day in timetables
while (i+1 < weekDays.length)
{
if (findScheduleForWeekDay(timetables, weekDays[i+1]) != null)
if (findScheduleForWeekDay(timetables, weekDays[i + 1]) != null)
break;
i++;
}