This repository was archived by the owner on Oct 21, 2020. It is now read-only.

Description
Are there any pressing reasons to include JSONObject in the exposed API ?
I would prefer receiving a raw data String over the use of a JSONObject with activation information.
This would allow me to use any other JSON parsing schemes available, now I'm forced to either:
- use JSONObject (which is essentially just a
Map)
- export the JSONObject back to a
String and then use any other preferred JSON parsing scheme (and still be still required to have a dependency to org.json).