(name,
new URL("http://www.fimfiction.net" + line)));
} catch (MalformedURLException e) {
Instance.getTraceHandler().error(e);
}
}
}
}
return urls;
}
@Override
protected String getChapterContent(URL source, InputStream in, int number,
Progress pg) {
return getLine(in, "", 1);
}
@Override
protected boolean supports(URL url) {
return "fimfiction.net".equals(url.getHost())
|| "www.fimfiction.net".equals(url.getHost());
}
}