From 96f46867c1c1f9982b37fe66eca5d82c045a408a Mon Sep 17 00:00:00 2001 From: JoePfeiffer Date: Sat, 10 Oct 2020 09:39:37 -0600 Subject: [PATCH] Get rid of unnecessary line feed to clean up indentation --- .../net/sf/openrocket/aerodynamics/BarrowmanCalculator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/net/sf/openrocket/aerodynamics/BarrowmanCalculator.java b/core/src/net/sf/openrocket/aerodynamics/BarrowmanCalculator.java index b8812a7ee..69ed97e14 100644 --- a/core/src/net/sf/openrocket/aerodynamics/BarrowmanCalculator.java +++ b/core/src/net/sf/openrocket/aerodynamics/BarrowmanCalculator.java @@ -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;