From 583701ff3ded34bd04b2e576a6cff2048fc1a780 Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Mon, 29 Oct 2018 17:42:38 +0300 Subject: [PATCH] Review fixes --- .../maps/bookmarks/data/CatalogCustomProperty.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/src/com/mapswithme/maps/bookmarks/data/CatalogCustomProperty.java b/android/src/com/mapswithme/maps/bookmarks/data/CatalogCustomProperty.java index a2587177fe..2292b08ea0 100644 --- a/android/src/com/mapswithme/maps/bookmarks/data/CatalogCustomProperty.java +++ b/android/src/com/mapswithme/maps/bookmarks/data/CatalogCustomProperty.java @@ -10,17 +10,17 @@ public class CatalogCustomProperty @NonNull private final String mLocalizedName; - private final boolean mIsRequired; + private final boolean mRequired; @NonNull private final CatalogCustomPropertyOption[] mOptions; public CatalogCustomProperty(@NonNull String key, @NonNull String localizedName, - boolean isRequired, @NonNull CatalogCustomPropertyOption[] options) + boolean required, @NonNull CatalogCustomPropertyOption[] options) { mKey = key; mLocalizedName = localizedName; - mIsRequired = isRequired; + mRequired = required; mOptions = options; } @@ -30,7 +30,7 @@ public class CatalogCustomProperty @NonNull public String getLocalizedName() { return mLocalizedName; } - public boolean isRequired() { return mIsRequired; } + public boolean isRequired() { return mRequired; } @NonNull public CatalogCustomPropertyOption[] getOptions() { return mOptions; }