Skip to content

Commit 11358e4

Browse files
committed
Color change and util change
1 parent a323d70 commit 11358e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/main/java/com/codepath/instagram/helpers/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public static List<InstagramPost> decodePostsFromJson(JSONObject jsonObject) thr
6161
return posts;
6262
}
6363

64-
private static List<InstagramComment> decodeCommentsFromJson(JSONObject jsonObject) throws JSONException {
64+
public static List<InstagramComment> decodeCommentsFromJson(JSONObject jsonObject) throws JSONException {
6565
List<InstagramComment> comments = new ArrayList<>();
6666
JSONArray commentsJson = jsonObject.optJSONArray("data");
6767
if (commentsJson != null) {

app/src/main/res/values/colors.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<color name="light_gray_text">#A5A7AA</color>
55
<color name="gray_text">#4B4F54</color>
6-
<color name="light_gray_separator_line">#A5A7AA</color>
6+
<color name="light_gray_separator_line">#E6E6E6</color>
77
<color name="blue_text">#125688</color>
88
<color name="instagram_blue">#00538B</color>
99
<color name="blue_status_bar">#004876</color>

0 commit comments

Comments
 (0)