Skip to content

Commit

Permalink
fixing default currency value
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrapyre committed May 9, 2024
1 parent 1b8b915 commit fb83abb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ object StandardType {

implicit object CurrencyType extends StandardType[java.util.Currency] {
override def tag: String = Tags.CURRENCY
override val defaultValue: Either[String, java.util.Currency] =
override def defaultValue: Either[String, java.util.Currency] =
try {
Right(java.util.Currency.getInstance(java.util.Locale.getDefault()))
} catch {
Expand Down

0 comments on commit fb83abb

Please sign in to comment.