Esempio n. 1
0
 public static List<InstagramPost> decodePostsFromJsonResponse(JSONObject jsonObject) {
   List<InstagramPost> posts = InstagramPost.fromJson(getDataJsonArray(jsonObject));
   return posts == null ? new ArrayList<InstagramPost>() : posts;
 }