[android] Fixed review notes, changed returned value

https://github.com/mapsme/omim/pull/10290#discussion_r253039074
This commit is contained in:
Dmitry Donskoy 2019-02-01 23:30:15 +03:00 committed by Roman Kuznetsov
parent 3997e2d09a
commit e2477b6c60

View file

@ -2368,7 +2368,7 @@ std::string BookmarkManager::GetCategoryServerId(kml::MarkGroupId categoryId) co
CHECK_THREAD_CHECKER(m_threadChecker, ());
auto cat = GetBmCategory(categoryId);
if (cat == nullptr)
return "";
return {};
return cat->GetServerId();
}