Skip to content

Commit

Permalink
Cleaned up
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Jul 21, 2023
1 parent 280254a commit 668e39b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/jasper/component/WebScraper.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ public class WebScraper {

WebScraper self = this;

private BlockingQueue<String> scrapeLater = new LinkedBlockingQueue<>();
private Set<String> scraping = new HashSet<>();
private final BlockingQueue<String> scrapeLater = new LinkedBlockingQueue<>();
private final Set<String> scraping = new HashSet<>();

// TODO: Put config in plugin/scrape
private final String[] websiteTextSelectors = {
Expand Down

0 comments on commit 668e39b

Please sign in to comment.