forked from organicmaps/organicmaps-tmp
[android] Compilation fix
This commit is contained in:
parent
5a9ab9cd41
commit
93504315eb
1 changed files with 2 additions and 2 deletions
|
@ -61,10 +61,10 @@ extern "C"
|
|||
jint country = idx.m_country;
|
||||
jint region = idx.m_region;
|
||||
|
||||
jmethodID methodID = env->GetMethodID(klass, "<init>", "(III)V")
|
||||
jmethodID methodId = env->GetMethodID(klass, "<init>", "(III)V");
|
||||
ASSERT(methodId, ());
|
||||
|
||||
return env->NewObject(klass, methodID, group, country, region);
|
||||
return env->NewObject(klass, methodId, group, country, region);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue