BoundingSphere: remove useless null check

This commit is contained in:
shadowislord 2015-03-27 21:38:14 -04:00
parent 4f15fa3147
commit f0fbdffb85

View File

@ -640,8 +640,7 @@ public class BoundingSphere extends BoundingVolume {
return rVal; return rVal;
} }
return new BoundingSphere(radius, return new BoundingSphere(radius, center.clone());
(center != null ? (Vector3f) center.clone() : null));
} }
/** /**