bolerio / mjson

Lean JSON Library for Java, with a compact, elegant API.
Apache License 2.0
83 stars 24 forks source link

parsing bug #12

Closed bolerio closed 8 years ago

bolerio commented 9 years ago

This example:

{ "type":"something", "value1":"Blabla", "value2":"years" "value3":"wtf" }

is missing a coma after the 3d value, and instead of an error being thrown it parses as:

{"value2":"wtf","value1":"Blabla","type":"something"}