diff --git a/src/Tgstation.Server.Host/Components/Repository/TestMergeResult.cs b/src/Tgstation.Server.Host/Components/Repository/TestMergeResult.cs index c722590e30..2505a491d8 100644 --- a/src/Tgstation.Server.Host/Components/Repository/TestMergeResult.cs +++ b/src/Tgstation.Server.Host/Components/Repository/TestMergeResult.cs @@ -2,8 +2,6 @@ using LibGit2Sharp; -#nullable disable - namespace Tgstation.Server.Host.Components.Repository { /// @@ -19,6 +17,6 @@ namespace Tgstation.Server.Host.Components.Repository /// /// List of conflicting file paths relative to the repository root. Only present if is . /// - public IReadOnlyList ConflictingFiles { get; init; } + public IReadOnlyList? ConflictingFiles { get; init; } } }