summaryrefslogtreecommitdiff
path: root/platform/java/src/com/artifex/mupdf
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2017-03-25 17:39:45 -0400
committerRobin Watts <Robin.Watts@artifex.com>2017-03-27 10:50:17 -0400
commit66f878d1d7c580f9010e9f362399606989671a45 (patch)
treeb00058d13efff94b659230e05f3df485f2c42287 /platform/java/src/com/artifex/mupdf
parentd3087bb261de53557572a49458a2ae88a2d38453 (diff)
downloadmupdf-66f878d1d7c580f9010e9f362399606989671a45.tar.xz
Tweak document_writer - don't pass dev back in.
It seems odd for a document writer to pass a device pointer out, and then require it to be passed back in. Hide that in the public API.
Diffstat (limited to 'platform/java/src/com/artifex/mupdf')
-rw-r--r--platform/java/src/com/artifex/mupdf/fitz/DocumentWriter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/java/src/com/artifex/mupdf/fitz/DocumentWriter.java b/platform/java/src/com/artifex/mupdf/fitz/DocumentWriter.java
index dce9d73d..bb22ca2f 100644
--- a/platform/java/src/com/artifex/mupdf/fitz/DocumentWriter.java
+++ b/platform/java/src/com/artifex/mupdf/fitz/DocumentWriter.java
@@ -22,6 +22,6 @@ public class DocumentWriter
}
public native Device beingPage(Rect mediabox);
- public native void endPage(Device device);
+ public native void endPage();
public native void close();
}