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);