From e9981aff28f2eeaa9e5423797e542b799634fef9 Mon Sep 17 00:00:00 2001 From: Daniel_M_Williams Date: Sun, 19 Jul 2020 11:30:54 -0400 Subject: [PATCH] [debug] removed excess debug output in FinSet --- core/src/net/sf/openrocket/rocketcomponent/FinSet.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/net/sf/openrocket/rocketcomponent/FinSet.java b/core/src/net/sf/openrocket/rocketcomponent/FinSet.java index b0a0829b7..366b86588 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/FinSet.java +++ b/core/src/net/sf/openrocket/rocketcomponent/FinSet.java @@ -673,9 +673,6 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona // (Iyy / M + Izz / M) / 2 = (h^2 + 2 * w^2)/24 final double inertia = (h2 + 2 * w2) / 24; - System.out.println("component " + this); - System.out.println("finCount " + finCount); - System.out.println("inertia " + inertia); if (finCount == 1) return inertia;