From 3ae3b0064ee8ec35cfa7cb727bfc2d7d8f24ed74 Mon Sep 17 00:00:00 2001 From: iwgeric Date: Mon, 11 Apr 2016 19:33:22 -0400 Subject: [PATCH] Remove static from method Having the method static was causing javah to change the signature of the native method which caused compiling errors --- jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java b/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java index f3575bcdf..debd36959 100644 --- a/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java +++ b/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java @@ -995,7 +995,7 @@ public class PhysicsSpace { return solverNumIterations; } - private static native void setSolverNumIterations(long physicsSpaceId, int numIterations); + private native void setSolverNumIterations(long physicsSpaceId, int numIterations); public static native void initNativePhysics();