mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Fix formatting
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user