We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 343072a commit bb01917Copy full SHA for bb01917
java/src/main/kotlin/io/spine/validation/java/FieldValues.kt
@@ -53,8 +53,7 @@ internal fun FieldType.stringValueOf(value: Expression<*>): Expression<String> =
53
"Unsupported field type: `${name}`."
54
)
55
}
56
- isList -> value.stringify()
57
- isMap -> value.stringify()
+ isList || isMap -> value.stringify()
58
else -> error(
59
"Cannot convert `$value` expression to `String` expression. " +
60
0 commit comments