Require designation match for motor to match set
This commit is contained in:
parent
88bf25e41d
commit
9145511f46
@ -220,6 +220,9 @@ public class ThrustCurveMotorSet implements Comparable<ThrustCurveMotorSet> {
|
|||||||
(type != m.getMotorType())) {
|
(type != m.getMotorType())) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!designation.equalsIgnoreCase(m.getDesignation()))
|
||||||
|
return false;
|
||||||
|
|
||||||
if (!commonName.equalsIgnoreCase(m.getCommonName()))
|
if (!commonName.equalsIgnoreCase(m.getCommonName()))
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user