Skip to content

Commit

Permalink
validated identifier defaults to its own Allowable Ids on construction
Browse files Browse the repository at this point in the history
  • Loading branch information
fzzyhmstrs committed Apr 24, 2024
1 parent 3c28744 commit d073d53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ import java.util.function.*
* @since 0.1.2
*/
@Suppress("unused")
open class ValidatedIdentifier @JvmOverloads constructor(defaultValue: Identifier, val allowableIds: AllowableIdentifiers, private val validator: EntryValidator<Identifier> = default(allowableIds))
open class ValidatedIdentifier @JvmOverloads constructor(defaultValue: Identifier, val allowableIds: AllowableIdentifiers, private val validator: EntryValidator<Identifier> = allowableIds)
:
ValidatedField<Identifier>(defaultValue),
Updatable,
Expand Down

0 comments on commit d073d53

Please sign in to comment.