Reduce somewhat unnecessary extra Build field spoofing calls

Co-authored-by: chiteroman <98092901+chiteroman@users.noreply.github.com>
This commit is contained in:
Chris Renshaw
2024-01-16 19:16:34 -04:00
committed by osm0sis
parent b57f46eed0
commit e0931c829d

View File

@@ -12,7 +12,7 @@ public final class CustomProvider extends Provider {
@Override
public synchronized Service getService(String type, String algorithm) {
EntryPoint.spoofDevice();
if (type.equals("KeyStore")) EntryPoint.spoofDevice();
return super.getService(type, algorithm);
}
}