From 5a12eff24ebab7cbbc4185f2851d35e12fe1a052 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 26 Jul 2023 16:02:03 +0530 Subject: chore: remove unnecessary suppressions --- .../com/github/androidpasswordstore/autofillparser/AutofillFormParser.kt | 1 - .../com/github/androidpasswordstore/autofillparser/AutofillHelper.kt | 1 - .../androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt | 1 - 3 files changed, 3 deletions(-) (limited to 'autofill-parser/src/main/java/com') 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 -- cgit v1.2.3