fix typo -- two missing right parentheses

This commit is contained in:
JoePfeiffer 2020-08-30 11:44:19 -06:00
parent 724cd3f5dc
commit 94a5e1c2d9

View File

@ -229,7 +229,7 @@ public class SimulationStatus implements Monitorable {
public Collection<MotorClusterState> getActiveMotors() { public Collection<MotorClusterState> getActiveMotors() {
List<MotorClusterState> activeList = new ArrayList<MotorClusterState>(); List<MotorClusterState> activeList = new ArrayList<MotorClusterState>();
for( MotorClusterState state: this.motorStateList ){ for( MotorClusterState state: this.motorStateList ){
if (this.configuration.isComponentActive( state.getMount() { if (this.configuration.isComponentActive( state.getMount())) {
activeList.add( state ); activeList.add( state );
} }
} }