diff options
author | Phillip <pacardon@u.washington.edu> | 2011-03-15 23:35:01 +0000 |
---|---|---|
committer | Phillip <pacardon@u.washington.edu> | 2011-03-15 23:35:01 +0000 |
commit | a50f85d292ae12aefbf29dc3ace1203cdd1f3e5b (patch) | |
tree | 8afe1e287230a2db47c6d76dbd342d4eac705ef6 /src | |
parent | 65812af57a86bef6bfc82bf538a7a2de27eecfc5 (diff) |
Changed access of a boolean to flag for removal from protected to private.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/CollidableObject.java | 2 |
1 files changed, 1 insertions, 1 deletions
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;
|