From 15f9f69611fb429ef9fc6e1261e0071e0cccddd7 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Tue, 26 Feb 2019 17:05:58 -0800 Subject: [PATCH] fix for issue #1027 - result of rayTest() --- jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 76d4463e1..d59da8d94 100644 --- a/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java +++ b/jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2018 jMonkeyEngine + * Copyright (c) 2009-2019 jMonkeyEngine * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -1001,7 +1001,7 @@ public class PhysicsSpace { * unaffected) * @return a new list of results (not null) */ - public List rayTest(Vector3f from, Vector3f to) { + public List rayTest(Vector3f from, Vector3f to) { List results = new ArrayList(); rayTest(from, to, results);