mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-23 04:57:17 +01:00
Nullify TestMergeInformation
This commit is contained in:
@@ -3,8 +3,6 @@ using System.Globalization;
|
||||
|
||||
using Tgstation.Server.Api.Models.Internal;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Tgstation.Server.Host.Components.Interop.Bridge
|
||||
{
|
||||
/// <summary>
|
||||
@@ -20,10 +18,10 @@ namespace Tgstation.Server.Host.Components.Interop.Bridge
|
||||
/// <summary>
|
||||
/// Backing field for <see cref="TargetCommitSha"/> needed to continue to support DMAPI 5.
|
||||
/// </summary>
|
||||
public string PullRequestRevision { get; set; }
|
||||
public string? PullRequestRevision { get; set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public override string TargetCommitSha
|
||||
public override string? TargetCommitSha
|
||||
{
|
||||
get => PullRequestRevision;
|
||||
set => PullRequestRevision = value;
|
||||
|
||||
Reference in New Issue
Block a user