fixed MapStorage.Index creation through constructor.

This commit is contained in:
rachytski 2012-05-21 22:53:59 +04:00 committed by Alex Zolotarev
parent f6b3eb4560
commit 27447517e3
2 changed files with 7 additions and 9 deletions

View file

@ -54,14 +54,17 @@ extern "C"
{
JNIEnv * env = jni::GetEnv();
jclass klass = env->FindClass("com/mapswithme/maps/MapStorage");
jclass klass = env->FindClass("com/mapswithme/maps/MapStorage$Index");
ASSERT(klass, ());
jmethodID methodId = env->GetStaticMethodID(klass,
"createIndex", "(III)Lcom/mapswithme/maps/MapStorage$Index;");
jint group = idx.m_group;
jint country = idx.m_country;
jint region = idx.m_region;
jmethodID methodID = env->GetMethodID(klass, "<init>", "(III)V")
ASSERT(methodId, ());
return env->CallStaticObjectMethod(klass, methodId, idx.m_group, idx.m_country, idx.m_region);
return env->NewObject(klass, methodID, group, country, region);
}
};

View file

@ -133,9 +133,4 @@ public class MapStorage
return mInstance;
}
public static Index createIndex(int group, int country, int region)
{
return new Index(group, country, region);
}
}