From 932971017832fb6a514a262b8efc4200e1bff830 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 18:15:11 +0000 Subject: fix(deps): update dependency com.facebook:ktfmt to v0.45 (#2687) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya --- .../androidpasswordstore/autofillparser/AutofillScenario.kt | 9 +++------ .../androidpasswordstore/autofillparser/AutofillStrategyDsl.kt | 3 +-- .../autofillparser/FeatureAndTrustDetection.kt | 3 +-- 3 files changed, 5 insertions(+), 10 deletions(-) (limited to 'autofill-parser') diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillScenario.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillScenario.kt index 2670a77d..97419048 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillScenario.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillScenario.kt @@ -70,24 +70,21 @@ public sealed class AutofillScenario { clientState, BUNDLE_KEY_CURRENT_PASSWORD_IDS, AutofillId::class.java - ) - ?: emptyList() + ) ?: emptyList() ) newPassword.addAll( BundleCompat.getParcelableArrayList( clientState, BUNDLE_KEY_NEW_PASSWORD_IDS, AutofillId::class.java - ) - ?: emptyList() + ) ?: emptyList() ) genericPassword.addAll( BundleCompat.getParcelableArrayList( clientState, BUNDLE_KEY_GENERIC_PASSWORD_IDS, AutofillId::class.java - ) - ?: emptyList() + ) ?: emptyList() ) } .build() diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillStrategyDsl.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillStrategyDsl.kt index 94cef6e5..0a75f078 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillStrategyDsl.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillStrategyDsl.kt @@ -430,8 +430,7 @@ internal class AutofillStrategy private constructor(private val rules: List