From b8e539d581db0219d634d9b8770cc2e8fa03ee1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=97=D0=B0=D1=86=D0=B5=D0=BF=D0=B8=D0=BD?= Date: Mon, 5 Feb 2018 12:00:55 +0300 Subject: [PATCH] [android] Changed default value for room --- android/src/com/mapswithme/maps/search/BookingFilterParams.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/com/mapswithme/maps/search/BookingFilterParams.java b/android/src/com/mapswithme/maps/search/BookingFilterParams.java index 8ae6fd6b7e..24b1208d45 100644 --- a/android/src/com/mapswithme/maps/search/BookingFilterParams.java +++ b/android/src/com/mapswithme/maps/search/BookingFilterParams.java @@ -47,7 +47,7 @@ public class BookingFilterParams implements Parcelable { // This value is corresponds to AvailabilityParams::Room::kNoChildren in core. static final int NO_CHILDREN = -1; - static final Room DEFAULT = new Room(2, 4); + static final Room DEFAULT = new Room(2); private int mAdultsCount; private int mAgeOfChild;