complet resource cleanup of lists in contentscraper's close()

This commit is contained in:
reger 2016-01-25 23:54:20 +01:00
parent 06e5cd6164
commit 900d4584ba

View File

@ -1096,10 +1096,19 @@ public class ContentScraper extends AbstractScraper implements Scraper {
this.embeds.clear();
this.images.clear();
this.metas.clear();
this.hreflang.clear();
this.navigation.clear();
this.titles.clear();
this.articles.clear();
this.startDates.clear();
this.endDates.clear();
this.headlines = null;
this.bold.clear();
this.italic.clear();
this.underline.clear();
this.li.clear();
this.dt.clear();
this.dd.clear();
this.content.clear();
this.root = null;
}