BoundingSphere: remove useless null check
This commit is contained in:
parent
4f15fa3147
commit
f0fbdffb85
@ -640,8 +640,7 @@ public class BoundingSphere extends BoundingVolume {
|
||||
return rVal;
|
||||
}
|
||||
|
||||
return new BoundingSphere(radius,
|
||||
(center != null ? (Vector3f) center.clone() : null));
|
||||
return new BoundingSphere(radius, center.clone());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user