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

@ -28,7 +28,7 @@ extern "C" {
#endif
JNIEXPORT jlong JNICALL Java_org_dolphinemu_dolphinemu_model_GameFileCache_newGameFileCache(
JNIEnv* env, jclass obj, jstring path)
JNIEnv* env, jclass, jstring path)
{
return reinterpret_cast<jlong>(new UICommon::GameFileCache(GetJString(env, path)));
}