mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 08:13:15 +08:00
Remove redundant null coalesce
This commit is contained in:
parent
ccacf56dd8
commit
6fd24a5d92
@ -37,7 +37,7 @@ namespace osu.Game.Beatmaps.Legacy
|
|||||||
if (newPoint is SampleControlPoint _)
|
if (newPoint is SampleControlPoint _)
|
||||||
{
|
{
|
||||||
var existing = BinarySearch(SamplePoints, time);
|
var existing = BinarySearch(SamplePoints, time);
|
||||||
return newPoint?.IsRedundant(existing) == true;
|
return newPoint.IsRedundant(existing);
|
||||||
}
|
}
|
||||||
|
|
||||||
return base.CheckAlreadyExisting(time, newPoint);
|
return base.CheckAlreadyExisting(time, newPoint);
|
||||||
|
Loading…
Reference in New Issue
Block a user