Skip to content

Commit

Permalink
Make PreemptionSettings.PreemptionStabilizationSettings nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
Neakita committed Oct 19, 2023
1 parent d1074a8 commit 57e3e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SightKeeper.Domain.Model/Profile/PreemptionSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public sealed class PreemptionSettings
{
public float HorizontalFactor { get; private set; }
public float VerticalFactor { get; private set; }
public PreemptionStabilizationSettings StabilizationSettings { get; private set; }
public PreemptionStabilizationSettings? StabilizationSettings { get; private set; }

public PreemptionSettings(float horizontalFactor, float verticalFactor, byte bufferSize, PreemptionStabilizationMethod method)
{
Expand Down

0 comments on commit 57e3e10

Please sign in to comment.