in src/main/java/org/apache/nutch/webui/service/impl/CrawlServiceImpl.java [102:108]
public void deleteCrawl(Long crawlId) {
try {
crawlDao.deleteById(crawlId);
} catch (SQLException e) {
throw new RuntimeException(e);
}
}