Fixed determining if it's a numeric TAN

This commit is contained in:
dankito 2021-11-03 00:52:37 +01:00
parent 1b2b960c1b
commit 6aa7694ed6
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ open class TanMethod(
internal constructor() : this("", TanMethodType.EnterTan, "") // for object deserializers
@Transient
open val isNumericTan: Boolean = allowedTanFormat == AllowedTanFormat.Numeric
open val isNumericTan: Boolean
get() = allowedTanFormat == AllowedTanFormat.Numeric
open var technicalId: String = UUID.random()