Remove inline keyword from updatePasswordLength() (#1213)

This commit is contained in:
Caleb Derosier 2024-04-02 16:36:44 -06:00 committed by Álison Fernandes
parent 2db31440d2
commit af266723e9

View file

@ -1404,7 +1404,7 @@ class GeneratorViewModel @Inject constructor(
/**
* Updates the length property of the [Password] to reflect the new minimum.
*/
private inline fun updatePasswordLength() {
private fun updatePasswordLength() {
updatePasswordType { currentPasswordType ->
currentPasswordType.copy(
length = currentPasswordType.minimumLength,