Nullify TestMergeResult

This commit is contained in:
Jordan Dominion
2023-12-23 11:44:15 -05:00
parent 3f758bb560
commit 0b3b41dca7
@@ -2,8 +2,6 @@
using LibGit2Sharp;
#nullable disable
namespace Tgstation.Server.Host.Components.Repository
{
/// <summary>
@@ -19,6 +17,6 @@ namespace Tgstation.Server.Host.Components.Repository
/// <summary>
/// List of conflicting file paths relative to the repository root. Only present if <see cref="Status"/> is <see cref="MergeStatus.Conflicts"/>.
/// </summary>
public IReadOnlyList<string> ConflictingFiles { get; init; }
public IReadOnlyList<string>? ConflictingFiles { get; init; }
}
}