From c0541386b66b23fd2af373f625febf22a93cf9d8 Mon Sep 17 00:00:00 2001 From: Daniel_M_Williams Date: Sat, 4 Jul 2020 12:29:53 -0400 Subject: [PATCH] [fix] removes excess debugging lines from PR #676 --- .../sf/openrocket/gui/dialogs/ComponentAnalysisDialog.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/swing/src/net/sf/openrocket/gui/dialogs/ComponentAnalysisDialog.java b/swing/src/net/sf/openrocket/gui/dialogs/ComponentAnalysisDialog.java index bc6512b2b..26e4cd1c3 100644 --- a/swing/src/net/sf/openrocket/gui/dialogs/ComponentAnalysisDialog.java +++ b/swing/src/net/sf/openrocket/gui/dialogs/ComponentAnalysisDialog.java @@ -554,20 +554,16 @@ public class ComponentAnalysisDialog extends JDialog implements StateChangeListe forces = aeroData.get(comp); if (forces == null) { - // DEBUG / trace level - System.err.println("Could not find aeroData entry for component: " + comp.getName()); row.cpx = 0.0; row.cna = 0.0; continue; } -// System.err.println(String.format(" .CP = %s", forces.getCP())); if (forces.getCP() != null) { row.cpx = forces.getCP().x; row.cna = forces.getCNa(); } -// System.err.println(String.format(" .CD = %s", forces.getCD())); if (!Double.isNaN(forces.getCD())) { dragData.add(forces); }