From 72bed74fa17416d58cc05a2857e78bf1ba4c6d9c Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Wed, 27 Feb 2019 09:15:53 -0800 Subject: [PATCH] complete the fix for issue #1027 --- 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 d59da8d94..f2d709131 100644 --- a/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java +++ b/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java @@ -1018,7 +1018,7 @@ public class PhysicsSpace { * unaffected) * @return a new list of results (not null) */ - public List rayTestRaw(Vector3f from, Vector3f to) { + public List rayTestRaw(Vector3f from, Vector3f to) { List results = new ArrayList(); rayTestRaw(from, to, results);