File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
readium/streamer/src/main/java/org/readium/r2/streamer/parser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ public class DefaultPublicationParser(
66
66
private val httpClient: HttpClient,
67
67
pdfFactory: PdfDocumentFactory<*>?,
68
68
assetOpener: AssetOpener
69
- ) : CompositePublicationParser(
69
+ ) : PublicationParser by CompositePublicationParser(
70
70
parsers + listOfNotNull(
71
71
EpubParser(),
72
72
pdfFactory?.let { PdfParser(context, it) },
@@ -80,7 +80,7 @@ public class DefaultPublicationParser(
80
80
* A composite [PublicationParser] which tries several parsers until it finds one which supports
81
81
* the asset.
82
82
*/
83
- public open class CompositePublicationParser(
83
+ public class CompositePublicationParser(
84
84
private val parsers: List<PublicationParser>
85
85
) : PublicationParser {
86
86
You can’t perform that action at this time.
0 commit comments