Replaced equalsIgnoreCase() with equals()

This commit is contained in:
Glenn C 2020-10-22 07:20:21 +00:00 committed by Glenn Carremans
parent 69fc823beb
commit efe757be07
No known key found for this signature in database
GPG Key ID: E197128A4E058CEF

View File

@ -327,7 +327,7 @@ public class IndexV1Updater extends IndexUpdater {
for (Apk apk : apks) {
if (!apk.isApk()) {
app.isApk = false;
} else if (apk.sig.equalsIgnoreCase(platformSigCache)) {
} else if (apk.sig.equals(platformSigCache)) {
app.preferredSigner = platformSigCache;
}
}