Hi, When fetching a key with a null value in PersonAppData, I got a NullPointerException in convertMethodsToJson().
I think it's because null check for pojo misses:
private JSONObject convertMethodsToJson(Object pojo) {
JSONObject toReturn = new JSONObject();
Method[] methods = pojo.getClass().getMethods();
Did anyone else encounter this issue. Probably it's a bug.
Thanks
--
Cheers,
Jesse

