From a50f85d292ae12aefbf29dc3ace1203cdd1f3e5b Mon Sep 17 00:00:00 2001 From: Phillip Date: Tue, 15 Mar 2011 23:35:01 +0000 Subject: Changed access of a boolean to flag for removal from protected to private. --- src/common/CollidableObject.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/common/CollidableObject.java b/src/common/CollidableObject.java index 2174e15..79e21f7 100644 --- a/src/common/CollidableObject.java +++ b/src/common/CollidableObject.java @@ -15,7 +15,7 @@ import com.sun.j3d.utils.geometry.Primitive; public abstract class CollidableObject implements Serializable { private static final long serialVersionUID = 3667108226485766929L; protected float inverseMass; - protected boolean detachMe = false; + private boolean detachMe = false; // The center of mass in the local coordinate system protected Vector3f centerOfMass; protected Vector3f position, previousPosition; -- cgit v1.2.3