Thomas Vachuska

Added JSON formatting for flow list command.

...@@ -94,7 +94,7 @@ public class FlowsListCommand extends AbstractShellCommand { ...@@ -94,7 +94,7 @@ public class FlowsListCommand extends AbstractShellCommand {
94 94
95 result.put("device", device.id().toString()) 95 result.put("device", device.id().toString())
96 .put("flowCount", flows.size()) 96 .put("flowCount", flows.size())
97 - .put("flows", array); 97 + .set("flows", array);
98 return result; 98 return result;
99 } 99 }
100 100
......