mirror of https://github.com/ppy/osu
Pass comparer in all usages for consistency
This commit is contained in:
parent
b33e54d064
commit
0d22c9a9c6
|
@ -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>();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue