From 9a0c6da01858334acbe27ccac863fdd87810a759 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sun, 11 Aug 2019 15:26:43 +0200 Subject: [PATCH] Library construction doesn't take argument --- src/android/org/kiwix/kiwixlib/JNIKiwixLibrary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/org/kiwix/kiwixlib/JNIKiwixLibrary.java b/src/android/org/kiwix/kiwixlib/JNIKiwixLibrary.java index 4a916753b..5ab779767 100644 --- a/src/android/org/kiwix/kiwixlib/JNIKiwixLibrary.java +++ b/src/android/org/kiwix/kiwixlib/JNIKiwixLibrary.java @@ -26,7 +26,7 @@ public class JNIKiwixLibrary { public native boolean addBook(String path) throws JNIKiwixException; - public JNIKiwixLibrary(String filename) + public JNIKiwixLibrary() { nativeHandle = getNativeLibrary(); }