Cleanup some debug output.

This commit is contained in:
Kris De Volder
2017-11-17 15:03:02 -08:00
parent b19e8d21d2
commit cf98184b35

View File

@@ -125,7 +125,6 @@ public class LiveBeansModel {
JSONObject beansObject = mainObject.getJSONObject("beans");
for (String id : beansObject.keySet()) {
JSONObject beanObject = beansObject.getJSONObject(id);
System.out.println(beanObject.toString(3));
LiveBean bean = parseBean(id, beanObject);
if (bean!=null) {
model.add(bean);