You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, it looks like "target type" should refer to Boolean, not List, even thought it is List deserializer that handles the problem. I'll see how easy this would be to fix.
In the following situation the target type of a
MismatchedInputException
is incorrect.I have an
ObjectMapper
without scalar conversion and that doesn't allow nulls.When I provide an integer as the element of the array of booleans I get that the target type was boolean (correct, since it is an array of booleans).
However, when I provide a null as the element I get that the target type was array. I was expecting the target type to be boolean as before.
The text was updated successfully, but these errors were encountered: