We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4aba97e + fc6650f commit 260d88cCopy full SHA for 260d88c
src/main/java/com/geccocrawler/gecco/downloader/DownloaderFactory.java
@@ -14,7 +14,7 @@
14
*/
15
public abstract class DownloaderFactory {
16
17
- public static final String DEFAULT_DWONLODER = "httpClientDownloader";
+ public static final String DEFAULT_DOWNLOADER = "httpClientDownloader";
18
19
private Map<String, Downloader> downloaders;
20
@@ -45,7 +45,7 @@ public Downloader getDownloader(String name) {
45
}
46
47
public Downloader defaultDownloader() {
48
- return downloaders.get(DEFAULT_DWONLODER);
+ return downloaders.get(DEFAULT_DOWNLOADER);
49
50
51
protected abstract Object createDownloader(Class<?> downloaderClass) throws Exception;
0 commit comments