Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
shts committed Jul 26, 2015
1 parent 57fc221 commit 6361ded
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public static boolean getNewsFeed(final Context context, final News.Type newsTyp
return getNewsFeed(newsFeedUrl, listener);
}

public static boolean getNewsFeed(final String url,
private static boolean getNewsFeed(final String url,
final GetNewsFeedListener listener) {

new Thread(new Runnable() {
Expand Down Expand Up @@ -284,7 +284,7 @@ public void run() {
return true;
}

public static ArrayList<News> getNewsFeed(final String url) throws IOException {
private static ArrayList<News> getNewsFeed(final String url) throws IOException {
final ArrayList<News> newsList = new ArrayList<News>();

Document document = Jsoup.connect(url).get();
Expand Down

0 comments on commit 6361ded

Please sign in to comment.