[android] Compilation fix

This commit is contained in:
Alex Zolotarev 2012-05-24 17:12:54 +03:00 committed by Alex Zolotarev
parent 5a9ab9cd41
commit 93504315eb

View file

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