summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--android/jni/mupdf.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/android/jni/mupdf.c b/android/jni/mupdf.c
index 7c630c26..5d7eeb0d 100644
--- a/android/jni/mupdf.c
+++ b/android/jni/mupdf.c
@@ -70,16 +70,6 @@ Java_com_artifex_mupdf_MuPDFCore_openFile(JNIEnv * env, jobject thiz, jstring jf
{
fz_throw(ctx, "Cannot open document: '%s'\n", filename);
}
-
- LOGE("Loading page tree...");
- fz_try(ctx)
- {
- pdf_load_page_tree(xref);
- }
- fz_catch(ctx)
- {
- fz_throw(ctx, "Cannot load page tree: '%s'\n", filename);
- }
pages = pdf_count_pages(xref);
LOGE("Done! %d pages", pages);
}