X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fsupported%2FText.java;h=67156956ee14d1389197d02b888b02b1f4a34336;hb=ed08c17162aa8cbdb0cbe6a6045815b987236b9f;hp=3b486ce8d0c4a36b8610a3bd10da9943e3dbfb6c;hpb=a4e45cfdcb46ecab5ac0a95fe4b30edd3eae431d;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/supported/Text.java b/src/be/nikiroo/fanfix/supported/Text.java index 3b486ce..6715695 100644 --- a/src/be/nikiroo/fanfix/supported/Text.java +++ b/src/be/nikiroo/fanfix/supported/Text.java @@ -14,6 +14,7 @@ import java.util.Scanner; import be.nikiroo.fanfix.Instance; import be.nikiroo.fanfix.bundles.Config; import be.nikiroo.fanfix.data.MetaData; +import be.nikiroo.utils.Progress; /** * Support class for local stories encoded in textual format, with a few rules: @@ -147,7 +148,7 @@ class Text extends BasicSupport { @Override protected String getDesc(URL source, InputStream in) throws IOException { - return getChapterContent(source, in, 0); + return getChapterContent(source, in, 0, null); } private BufferedImage getCover(URL source) throws IOException { @@ -169,8 +170,8 @@ class Text extends BasicSupport { } @Override - protected List> getChapters(URL source, InputStream in) - throws IOException { + protected List> getChapters(URL source, InputStream in, + Progress pg) throws IOException { List> chaps = new ArrayList>(); @SuppressWarnings("resource") Scanner scan = new Scanner(in, "UTF-8"); @@ -208,8 +209,8 @@ class Text extends BasicSupport { } @Override - protected String getChapterContent(URL source, InputStream in, int number) - throws IOException { + protected String getChapterContent(URL source, InputStream in, int number, + Progress pg) throws IOException { StringBuilder builder = new StringBuilder(); @SuppressWarnings("resource") Scanner scan = new Scanner(in, "UTF-8");