1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 02:02:53 +08:00

Pass comparer in all usages for consistency

This commit is contained in:
Bartłomiej Dach 2024-07-08 15:58:21 +02:00
parent b33e54d064
commit 0d22c9a9c6
No known key found for this signature in database

View File

@ -62,7 +62,7 @@ namespace osu.Game.Beatmaps
public ControlPointInfo ControlPointInfo { get; set; } = new ControlPointInfo();
public SortedList<BreakPeriod> Breaks { get; set; } = new SortedList<BreakPeriod>();
public SortedList<BreakPeriod> Breaks { get; set; } = new SortedList<BreakPeriod>(Comparer<BreakPeriod>.Default);
public List<string> UnhandledEventLines { get; set; } = new List<string>();