]
Victor Rubezhny resolved ERT-60.
--------------------------------
Fix Version/s: Neon (4.6) M7
Resolution: Done
JSON Editor formatter is broken [EBZ#486524]
--------------------------------------------
Key: ERT-60
URL:
https://issues.jboss.org/browse/ERT-60
Project: Eclipse Release Train
Issue Type: Task
Components: WTP Source Editing
Reporter: Max Rydahl Andersen
Assignee: Snjezana Peco
Labels: bzira, wst.json
Fix For: Neon (4.6) M7
Open a JSON editor and do a source>format.
In my tests a simple JSON such as
{
"test":123
}
has been formatted to
{
"test":123
}
}
and a more complex example
{
"test":123,
"field2":"f",
"ignore": [
"examples",
"test",
"tools"
]
}
ended up as
{
"test":123
}"field2":"f"
}"ignore":["examples","test","tools"]
}
}