Minor changes.

This commit is contained in:
vng 2012-05-22 19:42:57 +03:00 committed by Alex Zolotarev
parent 0ac97df257
commit f1c75e7de0

View file

@ -57,14 +57,11 @@ extern "C"
jclass klass = env->FindClass("com/mapswithme/maps/MapStorage$Index");
ASSERT(klass, ());
jint group = idx.m_group;
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,
(jint)idx.m_group, (jint)idx.m_country, (jint)idx.m_region);
}
};