summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-02-13 19:43:45 +0100
committerLaurenz <laurmaedje@gmail.com>2019-02-13 19:46:56 +0100
commitaba8ea4f7ccbdf74051a07569b99282dd473310a (patch)
tree7fc540cf3ca3b17c30843d174278a8ab86200721
parenta562541fda59e6ba310560e9fe75cc5de71d91dd (diff)
Denote which PDF objects are incomplete 🔧
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.
-rw-r--r--src/pdf.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/pdf.rs b/src/pdf.rs
index ab94492a..d3616cb9 100644
--- a/src/pdf.rs
+++ b/src/pdf.rs
@@ -113,9 +113,6 @@ impl<W: Write> WritePdf<Document> for W {
root: catalog_id,
})?;
- // Write where the xref table starts
- writer.write_start_xref()?;
-
Ok(writer.written())
}
}