diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-26 16:02:03 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-26 16:02:03 +0530 |
commit | 5a12eff24ebab7cbbc4185f2851d35e12fe1a052 (patch) | |
tree | c2e0bdd986094349b7b2146e254493414a10eb1e /autofill-parser | |
parent | c51e68fda843dc5004bfd292a74db1498e08f6ad (diff) |
chore: remove unnecessary suppressions
Diffstat (limited to 'autofill-parser')
3 files changed, 0 insertions, 3 deletions
diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt index 49c3b4c9..6a8e16f3 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt @@ -50,7 +50,6 @@ public sealed class FormOrigin(public open val identifier: String) { ApplicationInfoFlags.of(PackageManager.GET_META_DATA.toLong()) ) } else { - @Suppress("DEPRECATION") context.packageManager.getApplicationInfo(identifier, PackageManager.GET_META_DATA) } val label = context.packageManager.getApplicationLabel(info) diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt index dbdfad17..b12fd9c1 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt @@ -60,7 +60,6 @@ public fun computeCertificatesHash(context: Context, appPackage: String): String PackageManager.PackageInfoFlags.of(PackageManager.GET_SIGNING_CERTIFICATES.toLong()) ) } else { - @Suppress("DEPRECATION") context.packageManager.getPackageInfo(appPackage, PackageManager.GET_SIGNING_CERTIFICATES) } val signaturesNew = diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt index dbf165d4..9e28808e 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt @@ -254,7 +254,6 @@ public fun getInstalledBrowsersWithAutofillSupportLevel( ResolveInfoFlags.of(PackageManager.MATCH_ALL.toLong()) ) } else { - @Suppress("DEPRECATION") context.packageManager.queryIntentActivities(testWebIntent, PackageManager.MATCH_ALL) } return installedBrowsers |