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
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public Beatmap()
public ControlPointInfo ControlPointInfo { get; set; } = new ControlPointInfo(); 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>(); public List<string> UnhandledEventLines { get; set; } = new List<string>();