Fix formatting

This commit is contained in:
Alchyr
2020-04-09 09:34:40 -07:00
parent 3d975f30a3
commit f115fecb23
5 changed files with 12 additions and 9 deletions

View File

@ -52,8 +52,8 @@ namespace osu.Game.Beatmaps.ControlPoints
other is TimingControlPoint otherTyped
&& TimeSignature == otherTyped.TimeSignature && BeatLength.Equals(otherTyped.BeatLength);
public override bool IsRedundant(ControlPoint other, double time) =>
EquivalentTo(other)
&& other.Time == time;
public override bool IsRedundant(ControlPoint existing, double time) =>
EquivalentTo(existing)
&& existing.Time == time;
}
}