[fenix] For https://github.com/mozilla-mobile/fenix/issues/25808: Remove unnecessary elvis operator.

pull/600/head
mcarare 2 years ago committed by mergify[bot]
parent 03a6f2b28e
commit 130fe0e117

@ -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
}

Loading…
Cancel
Save