Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.8.0, 1.8.1
-
Fix Version/s: 1.8.2, 1.9-beta-3
-
Component/s: groovy-jdk
-
Labels:None
-
Testcase included:yes
-
Number of attachments :
Description
Currently
will outputprintln new JsonBuilder(['a','b','c','d'] as char[]).toString()
since the primitive class char has no properties (other than class).[{},{},{},{}]
My solution is to call toString on the object if there are no properties left. I have attached an updated JsonOutput.groovy and a fixed test.
Here is a patch file with my changes, if that helps.