finish moving all parsing to token scanner

This commit is contained in:
Eliot Jones
2018-01-20 00:49:53 +00:00
parent a0deab446b
commit c5e3ce7ec7
37 changed files with 422 additions and 447 deletions

View File

@@ -55,7 +55,6 @@
bool isLenientParsing,
ParsingCachingProviders cachingProviders,
IPageFactory pageFactory,
IPdfObjectParser pdfObjectParser,
Catalog catalog,
DocumentInformation information, IPdfObjectScanner pdfScanner)
{
@@ -68,7 +67,7 @@
this.pdfScanner = pdfScanner;
Information = information ?? throw new ArgumentNullException(nameof(information));
Catalog = catalog ?? throw new ArgumentNullException(nameof(catalog));
Pages = new Pages(log, Catalog, pdfObjectParser, pageFactory, reader, isLenientParsing, pdfScanner);
Pages = new Pages(log, Catalog, pageFactory, reader, isLenientParsing, pdfScanner);
}
/// <summary>