Skip to content
This repository has been archived by the owner on May 1, 2022. It is now read-only.

Commit

Permalink
scrapper updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawkush committed Nov 8, 2018
1 parent 3ce6f6d commit 81d012c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import com.example.ankush.rawanime.adapters.RecyclerViewAdapter;

import com.gecdevelopers.scrapper.AnimeModel;
import com.gecdevelopers.scrapper.Scrapper;
import com.gecdevelopers.scrapper.Scraper;

import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -54,7 +54,7 @@ private class MyAsyncTask extends AsyncTask<String,Void,Void> {

@Override
protected Void doInBackground(String... searchText) {
Scrapper scrapper= new Scrapper();
Scraper scrapper= new Scraper();
scrapper.startSearching(searchText[0]);
list.addAll(scrapper.getSearchedAnimeList());
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import com.example.ankush.rawanime.R;
import com.example.ankush.rawanime.adapters.RecyclerViewAdapter;
import com.gecdevelopers.scrapper.AnimeModel;
import com.gecdevelopers.scrapper.Scrapper;
import com.gecdevelopers.scrapper.Scraper;

import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -73,7 +73,7 @@ public void run() {

@Override
protected Void doInBackground(Void... voids) {
Scrapper scrapper= new Scrapper();
Scraper scrapper= new Scraper();
scrapper.scrapeForPopularOngoingAnimeList();
list.addAll(scrapper.getPopularOngoindAnimeList());
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import com.example.ankush.rawanime.R;
import com.example.ankush.rawanime.adapters.RecyclerViewAdapter;
import com.gecdevelopers.scrapper.AnimeModel;
import com.gecdevelopers.scrapper.Scrapper;
import com.gecdevelopers.scrapper.Scraper;

import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -57,8 +57,7 @@ private class MyAsyncTask extends AsyncTask<Void,Void,Void> {
@Override
protected Void doInBackground(Void... voids) {

//TODO Scrapper is changed to scraper after updating thwe library
Scrapper scraper= new Scrapper();
Scraper scraper= new Scraper();
scraper.scrapeForRecentAnimeList();
list.addAll(scraper.getRecentAnimeList());

Expand Down
Binary file modified lib/gogoScraper.jar
Binary file not shown.

0 comments on commit 81d012c

Please sign in to comment.