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
Klaxon does not serialize unsigned value correctly.
Code to reproduce:
val str = json { obj(
"intVal" to 123, // Int"uintVal" to 123U, // Unsigned Int"longVal" to 123L, // Long"ulongVal" to 123UL// Unsigned Long
)}.toJsonString()
Klaxon does not serialize unsigned value correctly.
Code to reproduce:
Result:
Expected result:
Version:
com.beust:klaxon:5.5
The text was updated successfully, but these errors were encountered: