i guess methods starting with underscores are not allowed

This commit is contained in:
Tim Chamberlain
2023-09-25 18:33:16 -05:00
parent c559cc21eb
commit d977abfc3d

View File

@ -279,7 +279,7 @@ public class JsonUtils
*******************************************************************************/
public static Object sortJSON(Object o) throws Exception
{
return (_sortJSON(o, 0));
return (sortJSON(o, 0));
}