Fixed spelling mistake added another comment

This commit is contained in:
cyian-1756 2018-05-16 04:31:25 -04:00
parent 21a81342d9
commit 6a73e6c06b

View File

@ -66,7 +66,7 @@ public abstract class AbstractHTMLRipper extends AlbumRipper {
return null; return null;
} }
// If a page has Queue support than it has no images we want to download, just a list of urls we want to add to // If a page has Queue support then it has no images we want to download, just a list of urls we want to add to
// the queue // the queue
protected boolean hasQueueSupport() { protected boolean hasQueueSupport() {
return false; return false;
@ -91,6 +91,7 @@ public abstract class AbstractHTMLRipper extends AlbumRipper {
MainWindow.addUrlToQueue(url); MainWindow.addUrlToQueue(url);
} }
// We set doc to null here so the while loop below this doesn't fire
doc = null; doc = null;
} }