complete the fix for issue #1027

This commit is contained in:
Stephen Gold 2019-02-27 09:15:53 -08:00
parent 15f9f69611
commit 72bed74fa1

View File

@ -1018,7 +1018,7 @@ public class PhysicsSpace {
* unaffected) * unaffected)
* @return a new list of results (not null) * @return a new list of results (not null)
*/ */
public List rayTestRaw(Vector3f from, Vector3f to) { public List<PhysicsRayTestResult> rayTestRaw(Vector3f from, Vector3f to) {
List<PhysicsRayTestResult> results = new ArrayList<PhysicsRayTestResult>(); List<PhysicsRayTestResult> results = new ArrayList<PhysicsRayTestResult>();
rayTestRaw(from, to, results); rayTestRaw(from, to, results);