@Deprecated
public abstract class BasicSupport_Deprecated extends BasicSupport {
private InputStream in;
- private URL currentReferer; // with only one 'r', as in 'HTTP'...
// quote chars
private char openQuote = Instance.getTrans().getCharacter(
throw new RuntimeException("should not be used by legacy code");
}
+ @Override
public Story process(Progress pg) throws IOException {
return process(getSource(), pg);
}
List<Entry<String, URL>> urls = new ArrayList<Entry<String, URL>>();
for (String title : chapterNames.values()) {
- urls.add(new AbstractMap.SimpleEntry(title, null));
+ urls.add(new AbstractMap.SimpleEntry<String, URL>(title, null));
}
return urls;