Merge pull request #9555 from JosJuice/android-jni-cleanup

Android: Some JNI cleanup
This commit is contained in:
Léo Lam
2021-03-05 00:47:36 +01:00
committed by GitHub
5 changed files with 11 additions and 22 deletions

View File

@ -1,6 +1,9 @@
package org.dolphinemu.dolphinemu.utils;
import androidx.annotation.Keep;
public interface BooleanSupplier
{
@Keep
boolean get();
}