For #25808: Remove unnecessary elvis operator.

This commit is contained in:
mcarare 2022-07-06 15:21:31 +03:00 committed by mergify[bot]
parent 87ed4e4c56
commit c5af10fac0
1 changed files with 1 additions and 1 deletions

View File

@ -36,5 +36,5 @@ open class WhatsNewVersion(internal open val version: String) {
data class ContextWhatsNewVersion(private val context: Context) : WhatsNewVersion("") {
override val version: String
get() = context.appVersionName ?: ""
get() = context.appVersionName
}