Android: Don't name unused JNIEnv/jobject/jclass parameters

This commit is contained in:
JosJuice
2020-11-07 11:57:43 +01:00
parent 57dc54144d
commit e4793cfb39
6 changed files with 85 additions and 110 deletions

View File

@ -187,8 +187,7 @@ JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getBannerHe
return static_cast<jint>(GetRef(env, obj)->GetBannerImage().height);
}
JNIEXPORT jobject JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_parse(JNIEnv* env,
jclass obj,
JNIEXPORT jobject JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_parse(JNIEnv* env, jclass,
jstring path)
{
auto game_file = std::make_shared<UICommon::GameFile>(GetJString(env, path));