From 94a5e1c2d9453b1c6339e93b279919d88b1c44dd Mon Sep 17 00:00:00 2001 From: JoePfeiffer Date: Sun, 30 Aug 2020 11:44:19 -0600 Subject: [PATCH] fix typo -- two missing right parentheses --- core/src/net/sf/openrocket/simulation/SimulationStatus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/net/sf/openrocket/simulation/SimulationStatus.java b/core/src/net/sf/openrocket/simulation/SimulationStatus.java index f702a980f..3b1b4c32f 100644 --- a/core/src/net/sf/openrocket/simulation/SimulationStatus.java +++ b/core/src/net/sf/openrocket/simulation/SimulationStatus.java @@ -229,7 +229,7 @@ public class SimulationStatus implements Monitorable { public Collection getActiveMotors() { List activeList = new ArrayList(); for( MotorClusterState state: this.motorStateList ){ - if (this.configuration.isComponentActive( state.getMount() { + if (this.configuration.isComponentActive( state.getMount())) { activeList.add( state ); } }