From aba8ea4f7ccbdf74051a07569b99282dd473310a Mon Sep 17 00:00:00 2001 From: Laurenz Date: Wed, 13 Feb 2019 19:43:45 +0100 Subject: [PATCH] =?UTF-8?q?Denote=20which=20PDF=20objects=20are=20incomple?= =?UTF-8?q?te=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Many features will only be added as needed by the parent project. Thus it should be kept track of what is complete. Also improves PDF trailer writing. --- src/pdf.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pdf.rs b/src/pdf.rs index ab94492a9..d3616cb9a 100644 --- a/src/pdf.rs +++ b/src/pdf.rs @@ -113,9 +113,6 @@ impl WritePdf for W { root: catalog_id, })?; - // Write where the xref table starts - writer.write_start_xref()?; - Ok(writer.written()) } }