diff --git a/android/jni/com/mapswithme/maps/MapStorage.cpp b/android/jni/com/mapswithme/maps/MapStorage.cpp index 0ff1483c74..d2546778a7 100644 --- a/android/jni/com/mapswithme/maps/MapStorage.cpp +++ b/android/jni/com/mapswithme/maps/MapStorage.cpp @@ -61,10 +61,10 @@ extern "C" jint country = idx.m_country; jint region = idx.m_region; - jmethodID methodID = env->GetMethodID(klass, "", "(III)V") + jmethodID methodId = env->GetMethodID(klass, "", "(III)V"); ASSERT(methodId, ()); - return env->NewObject(klass, methodID, group, country, region); + return env->NewObject(klass, methodId, group, country, region); } };