Fix known non-nulls

This commit is contained in:
Dean Herbert 2019-10-25 20:04:27 +09:00
parent e2f2638212
commit e39016bf01
2 changed files with 2 additions and 2 deletions

View File

@ -46,6 +46,6 @@ public virtual HitSampleInfo ApplyTo(HitSampleInfo hitSampleInfo)
public override bool EquivalentTo(ControlPoint other) =>
other is SampleControlPoint otherTyped &&
string.Equals(SampleBank, otherTyped?.SampleBank) && SampleVolume == otherTyped?.SampleVolume;
string.Equals(SampleBank, otherTyped.SampleBank) && SampleVolume == otherTyped.SampleVolume;
}
}

View File

@ -28,6 +28,6 @@ public virtual double BeatLength
public override bool EquivalentTo(ControlPoint other) =>
other is TimingControlPoint otherTyped
&& TimeSignature == otherTyped?.TimeSignature && beatLength.Equals(otherTyped.beatLength);
&& TimeSignature == otherTyped.TimeSignature && beatLength.Equals(otherTyped.beatLength);
}
}