fix in the Java binding: the Expr class should also ensure that libjpgf.so is loaded to avoid failures if Expr is the first class that is used.

This commit is contained in:
krasimir
2015-11-27 15:35:53 +00:00
parent 724b8aa8ae
commit 545e1a0cc8

View File

@@ -54,4 +54,8 @@ public class Expr implements Serializable {
master = e.master;
ref = e.ref;
}
static {
System.loadLibrary("jpgf");
}
}