diff options
author | Sebastian Rasmussen <sebras@gmail.com> | 2016-07-17 16:51:37 +0800 |
---|---|---|
committer | Sebastian Rasmussen <sebras@gmail.com> | 2016-07-17 22:33:52 +0800 |
commit | 8625af9d32111e555eef595d6fcca739b0249253 (patch) | |
tree | ed902b69b400489bca84c384fc865e99af352626 /platform/java/src | |
parent | ab9415f28a357adbc53f45e0187c6bf90ade540b (diff) | |
download | mupdf-8625af9d32111e555eef595d6fcca739b0249253.tar.xz |
JNI: Cleanup of Annotation and PDFObject_toByteString.
Diffstat (limited to 'platform/java/src')
-rw-r--r-- | platform/java/src/com/artifex/mupdf/fitz/Page.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/java/src/com/artifex/mupdf/fitz/Page.java b/platform/java/src/com/artifex/mupdf/fitz/Page.java index 64fe4030..7763df04 100644 --- a/platform/java/src/com/artifex/mupdf/fitz/Page.java +++ b/platform/java/src/com/artifex/mupdf/fitz/Page.java @@ -24,13 +24,12 @@ public class Page public native void run(Device dev, Matrix ctm, Cookie cookie); public native void runPageContents(Device dev, Matrix ctm, Cookie cookie); - public native Annotation[] getAnnotations(); public void run(Device dev, Matrix ctm) { run(dev, ctm, null); } - // FIXME: Later + public native Annotation[] getAnnotations(); public native Link[] getLinks(); // FIXME: Later. Much later. |