From e5554e0f1de24e0072774e753ed1c583291e7318 Mon Sep 17 00:00:00 2001 From: JoePfeiffer Date: Wed, 15 Nov 2023 11:48:33 -0700 Subject: [PATCH] oops, left some commented out code in there --- core/test/net/sf/openrocket/simulation/FlightEventsTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/test/net/sf/openrocket/simulation/FlightEventsTest.java b/core/test/net/sf/openrocket/simulation/FlightEventsTest.java index 5c6b8c95d..442edb574 100644 --- a/core/test/net/sf/openrocket/simulation/FlightEventsTest.java +++ b/core/test/net/sf/openrocket/simulation/FlightEventsTest.java @@ -59,9 +59,6 @@ public class FlightEventsTest extends BaseTestCase { new FlightEvent(FlightEvent.Type.GROUND_HIT, 1200, null), new FlightEvent(FlightEvent.Type.SIMULATION_END, 1200, null) }; - // final double[] expectedEventTimes = {0.0, 0.0, 0.1275, 0.13, 2.0, 2.0, 2.001, 2.48338}; // Ground hit time is too variable, so don't include it - // final RocketComponent[] expectedSources = {rocket, motorMountTube, null, null, motorMountTube, - // stage, parachute, rocket, null, null}; checkEvents(expectedEvents, sim, 0); }