From 31efacf9a284fa6dd293a38aa1e7bab4dc83b3f0 Mon Sep 17 00:00:00 2001 From: gered Date: Sat, 14 Sep 2013 17:36:03 -0400 Subject: [PATCH] not really much point to the use of 'final' here... --- src/com/blarg/gdx/math/IntersectionTester.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/blarg/gdx/math/IntersectionTester.java b/src/com/blarg/gdx/math/IntersectionTester.java index 7180169..2284381 100644 --- a/src/com/blarg/gdx/math/IntersectionTester.java +++ b/src/com/blarg/gdx/math/IntersectionTester.java @@ -321,7 +321,7 @@ public class IntersectionTester { static final Vector3 edge = new Vector3(); static final Vector3 baseToVertex = new Vector3(); - public static boolean sweptSphereTest(SweptSphereCollisionPacket packet, final Vector3 v1, final Vector3 v2, final Vector3 v3) { + public static boolean sweptSphereTest(SweptSphereCollisionPacket packet, Vector3 v1, Vector3 v2, Vector3 v3) { boolean foundCollision = false; tmp1.set(1.0f / packet.ellipsoidRadius.x, 1.0f / packet.ellipsoidRadius.y, 1.0f / packet.ellipsoidRadius.z);