Get rid of unnecessary line feed to clean up indentation

This commit is contained in:
JoePfeiffer 2020-10-10 09:39:37 -06:00
parent 8d65218c4d
commit 96f46867c1

View File

@ -673,8 +673,7 @@ public class BarrowmanCalculator extends AbstractAerodynamicCalculator {
// note: the iterator *should* serve up the next component.... buuuut ....
// this code has is tested, and there's no compelling reason to change.
final SymmetricComponent n = s.getNextSymmetricComponent();
if ((n == null) ||
!configuration.isStageActive(n.getStageNumber())) {
if ((n == null) || !configuration.isStageActive(n.getStageNumber())) {
double area = Math.PI * pow2(s.getAftRadius());
double cd = base * area / conditions.getRefArea();
total += cd;