Crawl.java:
line 84 if (fs.exists(dir)) {
line 85 throw new RuntimeException(dir + " already exists.");
line 86 }What are the side effects of removing those lines from Crawl.java?
Crawl.java:
line 84 if (fs.exists(dir)) {
line 85 throw new RuntimeException(dir + " already exists.");
line 86 }What are the side effects of removing those lines from Crawl.java?