From 79c4478f73087802baa34bab5dfd45c50c392abd Mon Sep 17 00:00:00 2001 From: fred ross-perry Date: Wed, 2 Nov 2016 13:45:59 -0700 Subject: Change access to protected on parts of Image.java to allow AndroidImage to build. --- platform/java/src/com/artifex/mupdf/fitz/Image.java | 4 ++-- 1 file 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; } -- cgit v1.2.3