Skip to content

Commit ca2faed

Browse files
fix: remove nullable annotation from Slider cache field
Agent-Logs-Url: https://github.com/winnerspiros/osu/sessions/bb854639-73b2-45df-98c8-ed1fa6c53a92 Co-authored-by: winnerspiros <1675249+winnerspiros@users.noreply.github.com>
1 parent 9fddd91 commit ca2faed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

osu.Game.Rulesets.Osu/Objects/Slider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public double Duration
3737
public override IList<HitSampleInfo> AuxiliarySamples => cachedAuxiliarySamples ??= CreateSlidingSamples().Concat(TailSamples).ToArray();
3838

3939
// Cached after ApplyDefaults populates TailSamples — stable for the lifetime of this slider instance.
40-
private IList<HitSampleInfo>? cachedAuxiliarySamples;
40+
private IList<HitSampleInfo> cachedAuxiliarySamples;
4141

4242
private readonly Cached<Vector2> endPositionCache = new Cached<Vector2>();
4343

0 commit comments

Comments
 (0)