Skip to content

Commit

Permalink
Removed aggressive JSONUtil logging
Browse files Browse the repository at this point in the history
  • Loading branch information
roundhill committed Aug 28, 2014
1 parent 643365e commit 2e0d872
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ public static <U> U queryJSON(JSONObject source, String query, U defaultObject)
AppLog.e(T.UTILS, "Unable to cast the object to " + defaultObject.getClass().getName(), e);
return defaultObject;
} catch (JSONException e) {
AppLog.e(T.UTILS, "Unable to get the Key from the input object. Key:" + query, e);
return defaultObject;
}
}
Expand Down Expand Up @@ -133,7 +132,6 @@ public static <U> U queryJSON(JSONArray source, String query, U defaultObject){
AppLog.e(T.UTILS, "Unable to cast the object to "+defaultObject.getClass().getName(), e);
return defaultObject;
} catch (JSONException e) {
AppLog.e(T.UTILS, "Unable to get the Key from the input object. Key:" + query, e);
return defaultObject;
}
}
Expand Down

0 comments on commit 2e0d872

Please sign in to comment.