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
Although all decoding/parsing of true JSON numbers validates that tokens follow expected pattern, before calling number methods, deserializers in NumberDeserializers do not seem to do that for "stringified Numbers" (that is, JSON Strings that contain Numbers). But Floating Point decoders expect such validation to be done before calling methods via jackson-core package's NumberInput methods.
So let's add validation for alleged FP numbers.
The text was updated successfully, but these errors were encountered:
Describe your Issue
Although all decoding/parsing of true JSON numbers validates that tokens follow expected pattern, before calling number methods, deserializers in
NumberDeserializers
do not seem to do that for "stringified Numbers" (that is, JSON Strings that contain Numbers). But Floating Point decoders expect such validation to be done before calling methods viajackson-core
package'sNumberInput
methods.So let's add validation for alleged FP numbers.
The text was updated successfully, but these errors were encountered: