Android: Add @Keep annotation to BooleanSupplier

I should at least follow the conventions I set myself... (See a8d385c)
This commit is contained in:
JosJuice 2021-03-03 18:29:32 +01:00
parent 858f00b641
commit 2f0bab0192

View File

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