From c85aa17a61f1803f9dd8877542f4d7518a434474 Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Mon, 24 Sep 2018 14:46:34 +0300 Subject: [PATCH] [types_strings] review fixes --- .../mapswithme/maps/discovery/DiscoveryFragment.java | 4 +--- android/src/com/mapswithme/maps/editor/Editor.java | 7 ++++--- .../maps/editor/FeatureCategoryFragment.java | 6 +++--- android/src/com/mapswithme/maps/gallery/Holders.java | 8 ++------ .../src/com/mapswithme/maps/search/SearchAdapter.java | 1 - android/src/com/mapswithme/util/Utils.java | 11 +++++++++-- editor/new_feature_categories.cpp | 4 ++-- editor/new_feature_categories.hpp | 7 ++++++- 8 files changed, 27 insertions(+), 21 deletions(-) diff --git a/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java b/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java index ad3e7ca99f..b39633edd0 100644 --- a/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java +++ b/android/src/com/mapswithme/maps/discovery/DiscoveryFragment.java @@ -369,9 +369,7 @@ public class DiscoveryFragment extends BaseMwmToolbarFragment implements Discove private MapObject createMapObject(@NonNull Items.SearchItem item) { String featureType = item.getFeatureType(); - String subtitle = TextUtils.isEmpty(featureType) - ? "" - : Utils.getLocalizedFeatureType(getContext(), featureType); + String subtitle = Utils.getLocalizedFeatureType(getContext(), featureType); String title = TextUtils.isEmpty(item.getTitle()) ? subtitle : item.getTitle(); diff --git a/android/src/com/mapswithme/maps/editor/Editor.java b/android/src/com/mapswithme/maps/editor/Editor.java index e9773a6437..86379cc1c8 100644 --- a/android/src/com/mapswithme/maps/editor/Editor.java +++ b/android/src/com/mapswithme/maps/editor/Editor.java @@ -140,9 +140,10 @@ public final class Editor public static native boolean nativeSaveEditedFeature(); @NonNull - public static native String[] nativeGetAllCreatableFeatureTypes(String lang); + public static native String[] nativeGetAllCreatableFeatureTypes(@NonNull String lang); @NonNull - public static native String[] nativeSearchCreatableFeatureTypes(String query, String lang); + public static native String[] nativeSearchCreatableFeatureTypes(@NonNull String query, + @NonNull String lang); /** * Creates new object on the map. Places it in the center of current viewport. @@ -153,7 +154,7 @@ public final class Editor { nativeCreateMapObject(category.getType()); } - public static native void nativeCreateMapObject(String type); + public static native void nativeCreateMapObject(@NonNull String type); public static native void nativeCreateNote(String text); public static native void nativePlaceDoesNotExist(@NonNull String comment); public static native void nativeRollbackMapObject(); diff --git a/android/src/com/mapswithme/maps/editor/FeatureCategoryFragment.java b/android/src/com/mapswithme/maps/editor/FeatureCategoryFragment.java index c42f2892cf..36ddf284a3 100644 --- a/android/src/com/mapswithme/maps/editor/FeatureCategoryFragment.java +++ b/android/src/com/mapswithme/maps/editor/FeatureCategoryFragment.java @@ -59,7 +59,7 @@ public class FeatureCategoryFragment extends BaseMwmRecyclerFragment(CategoriesHolder::kMaxSupportedLocaleIndex) + 1>; + indexer::CategoriesIndex m_index; - unordered_set m_addedLangs; + Langs m_addedLangs; TypeNames m_types; DISALLOW_COPY(NewFeatureCategories);