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
Historically JsonWire in some cases would emit 'null' for Double.NaN' and the unquoted strings InfinityforDouble.Infinite`. In the latter case this token was not represented as a JSON string literal in double quotes so would create parse errors when that JSON was re-parsed down the line.
This ticket does the following:
Maps Double.NaN, Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY to the JSON strings "NaN", "Infinity", "-Infinity"
Implements the same logic for float
The text was updated successfully, but these errors were encountered:
Historically JsonWire in some cases would emit 'null' for
Double.NaN' and the unquoted strings
Infinityfor
Double.Infinite`. In the latter case this token was not represented as a JSON string literal in double quotes so would create parse errors when that JSON was re-parsed down the line.This ticket does the following:
"NaN", "Infinity", "-Infinity"
float
The text was updated successfully, but these errors were encountered: