Remove default argument

This commit is contained in:
Naveen 2022-08-29 16:35:05 +05:30
parent b6e21507c1
commit f7c9dfbc8e
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ data class VCardWrapper(val vCard: VCard, val fullName: String?, val properties:
.distinctBy { it.value }
val fullName = vCard.extractFullName()
return VCardWrapper(vCard, fullName, properties, expanded = false)
return VCardWrapper(vCard, fullName, properties)
}
}
}