From 2298cb690fbd64d87cfeb6e5638b6b652329a09f Mon Sep 17 00:00:00 2001 From: stephengold Date: Thu, 25 Jul 2024 15:46:23 -0700 Subject: [PATCH] CollisionShape: javadoc --- .../java/com/jme3/bullet/collision/shapes/CollisionShape.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/jme3/bullet/collision/shapes/CollisionShape.java b/src/main/java/com/jme3/bullet/collision/shapes/CollisionShape.java index 06694b54..1930550d 100644 --- a/src/main/java/com/jme3/bullet/collision/shapes/CollisionShape.java +++ b/src/main/java/com/jme3/bullet/collision/shapes/CollisionShape.java @@ -610,7 +610,7 @@ public String toString() { * Compare Bullet's scale factors to the local copies. * * @param storeVector caller-allocated temporary storage (not null) - * @return true if Bullet and the JVM copy match exactly, otherwise false + * @return true if the scale factors match exactly, otherwise false */ private boolean checkScale(Vector3f storeVector) { assert storeVector != null;