chore: suppress invalid suggestion
This commit is contained in:
parent
8b97a4a3f1
commit
25ffacd213
1 changed files with 3 additions and 0 deletions
|
@ -178,6 +178,9 @@ public sealed class AutofillScenario<out T : Any> {
|
|||
public val hasFieldsToSave: Boolean
|
||||
get() = fieldsToSave.isNotEmpty()
|
||||
|
||||
@Suppress(
|
||||
"ConvertArgumentToSet"
|
||||
) // This is a single item List, Set conversion only adds overhead.
|
||||
public val hasPasswordFieldsToSave: Boolean
|
||||
get() = fieldsToSave.minus(listOfNotNull(username)).isNotEmpty()
|
||||
|
||||
|
|
Loading…
Reference in a new issue