mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Properly annotate method to allow null
This commit is contained in:
@ -69,7 +69,7 @@ namespace osu.Game.Beatmaps.ControlPoints
|
||||
public double BPM => 60000 / BeatLength;
|
||||
|
||||
// Timing points are never redundant as they can change the time signature.
|
||||
public override bool IsRedundant(ControlPoint existing) => false;
|
||||
public override bool IsRedundant(ControlPoint? existing) => false;
|
||||
|
||||
public override void CopyFrom(ControlPoint other)
|
||||
{
|
||||
|
Reference in New Issue
Block a user