Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.0.14
-
None
Description
JsonSlurper should throw a JsonException when parsing the following input:
""" { "a":1, "b": { "c":2 }"""
But it parses the string successfully. On the other hand, it does throw a JsonException when parsing
""" { "a":1, "b": { "c":2 } """
where the ending """ is on a separate line.
I think it should fail for both.