diff options
author | Sebastian Rasmussen <sebras@gmail.com> | 2017-10-04 21:11:42 +0200 |
---|---|---|
committer | Sebastian Rasmussen <sebras@gmail.com> | 2017-10-05 13:07:43 +0200 |
commit | 298f9f29c9e3ca4ff056320a23584f16be614c81 (patch) | |
tree | 1d32f52a4b23982ebc42c3f776c51f62a5dd2495 /source | |
parent | 5799d09e269c91669d5dd8b20b3f19339409e677 (diff) | |
download | mupdf-298f9f29c9e3ca4ff056320a23584f16be614c81.tar.xz |
Remove unused code.
Diffstat (limited to 'source')
-rw-r--r-- | source/pdf/pdf-write.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source/pdf/pdf-write.c b/source/pdf/pdf-write.c index 1111c0ff..de3b4d7d 100644 --- a/source/pdf/pdf-write.c +++ b/source/pdf/pdf-write.c @@ -322,12 +322,6 @@ order_ge(int ui, int uj) return 1; else if (uj & USE_OTHER_OBJECTS) return 0; - /* Put objects not associated with any page (anything - * not touched by the catalogue) before that... */ - else if (ui == 0) - return 1; - else if (uj == 0) - return 0; /* Put shared objects before that... */ else if (ui & USE_SHARED) return 1; |