Remove unnecessary time property

This commit is contained in:
smoogipoo
2020-04-17 17:06:12 +09:00
parent 69fb984e71
commit 9aac98664c
7 changed files with 10 additions and 11 deletions

View File

@ -27,7 +27,7 @@ namespace osu.Game.Beatmaps.ControlPoints
set => SpeedMultiplierBindable.Value = value;
}
public override bool IsRedundant(ControlPoint existing, double time)
public override bool IsRedundant(ControlPoint existing)
=> existing is DifficultyControlPoint existingDifficulty
&& SpeedMultiplier == existingDifficulty.SpeedMultiplier;
}