|
|
|
|
@ -669,7 +669,6 @@ open class Session : RealmObject(), Savable, RowUpdatable, RowRepresentable, Tim |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
fun getFormattedStakes(): String { |
|
|
|
|
|
|
|
|
|
val components = arrayListOf<String>() |
|
|
|
|
this.formattedBlinds?.let { components.add(it) } |
|
|
|
|
this.formattedAnte?.let { components.add("($it)") } |
|
|
|
|
@ -679,7 +678,6 @@ open class Session : RealmObject(), Savable, RowUpdatable, RowRepresentable, Tim |
|
|
|
|
} else { |
|
|
|
|
NULL_TEXT |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private val formattedBlinds: String? |
|
|
|
|
@ -693,12 +691,12 @@ open class Session : RealmObject(), Savable, RowUpdatable, RowRepresentable, Tim |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private val formattedAnte: String? |
|
|
|
|
get() { |
|
|
|
|
this.cgAnte?.let { ante -> |
|
|
|
|
return ante.toCurrency(this.currency) |
|
|
|
|
} |
|
|
|
|
return null |
|
|
|
|
} |
|
|
|
|
get() { |
|
|
|
|
this.cgAnte?.let { ante -> |
|
|
|
|
return ante.toCurrency(this.currency) |
|
|
|
|
} |
|
|
|
|
return null |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// fun formatBlinds() { |
|
|
|
|
|