diff options
author | fred ross-perry <fredross-perry@Fred-Ross-Perrys-Computer.local> | 2016-11-02 13:45:59 -0700 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-11-08 20:06:14 +0100 |
commit | 79c4478f73087802baa34bab5dfd45c50c392abd (patch) | |
tree | 29a01c896ce27150df3eab2d135d7ca5574821db /platform | |
parent | 15a76c5a9a12f6a21e05f0b8d1ce15a40c42461b (diff) | |
download | mupdf-79c4478f73087802baa34bab5dfd45c50c392abd.tar.xz |
Change access to protected on parts of Image.java to allow AndroidImage to build.
Diffstat (limited to 'platform')
-rw-r--r-- | platform/java/src/com/artifex/mupdf/fitz/Image.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/java/src/com/artifex/mupdf/fitz/Image.java b/platform/java/src/com/artifex/mupdf/fitz/Image.java index 4d2f7eb5..ac2c3da5 100644 --- a/platform/java/src/com/artifex/mupdf/fitz/Image.java +++ b/platform/java/src/com/artifex/mupdf/fitz/Image.java @@ -2,7 +2,7 @@ package com.artifex.mupdf.fitz; public class Image { - private long pointer; + protected long pointer; protected native void finalize(); @@ -14,7 +14,7 @@ public class Image private native long newNativeFromPixmap(Pixmap pixmap); private native long newNativeFromFile(String filename); - private Image(long p) { + protected Image(long p) { pointer = p; } |