diff --git a/WordPressUtils/src/main/java/org/wordpress/android/util/JSONUtil.java b/WordPressUtils/src/main/java/org/wordpress/android/util/JSONUtil.java index 199fba703db0..371ac6660bc0 100644 --- a/WordPressUtils/src/main/java/org/wordpress/android/util/JSONUtil.java +++ b/WordPressUtils/src/main/java/org/wordpress/android/util/JSONUtil.java @@ -77,7 +77,6 @@ public static 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; } } @@ -133,7 +132,6 @@ public static 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; } }