Skip to content

Instantly share code, notes, and snippets.

@cwndrws
Last active August 29, 2015 13:56
Show Gist options
  • Save cwndrws/8812732 to your computer and use it in GitHub Desktop.
Save cwndrws/8812732 to your computer and use it in GitHub Desktop.
the change I had to make to the convertJsonToJsonObject() method in the Item class.
private JsonObject convertJsonToJsonObject(String json) {
// parse json string in to JsonElement
try {
JsonElement toObject = new JsonParser().parse(json);
return toObject.getAsJsonObject();
}catch(JsonSyntaxException mfe){
return null;
// This was screwing me up a lot
}catch(IllegalStateException ise){
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment