@param obj @return
(Object obj)
| 174 | * @return |
| 175 | */ |
| 176 | public static String toJSONString(Object obj) { |
| 177 | return toJSONString(obj, false); |
| 178 | } |
| 179 | public static String toJSONString(Object obj, boolean format) { |
| 180 | if (obj == null) { |
| 181 | return null; |
no test coverage detected