1
0
mirror of https://github.com/bitwarden/server synced 2026-01-06 18:43:36 +00:00

Add #nullable disable to platform code (#6057)

This commit is contained in:
Justin Baur
2025-07-08 10:25:59 -04:00
committed by GitHub
parent 7fb7d6fa56
commit fa0c9cb387
291 changed files with 1158 additions and 296 deletions

View File

@@ -1,4 +1,7 @@
using System.Reflection;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Reflection;
using AutoFixture;
using Bit.Test.Common.Helpers;
using Xunit;

View File

@@ -1,4 +1,7 @@
using AutoFixture;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using AutoFixture;
using AutoFixture.Xunit2;
namespace Bit.Test.Common.AutoFixture.Attributes;

View File

@@ -1,4 +1,7 @@
using System.Reflection;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Reflection;
using Xunit.Sdk;
namespace Bit.Test.Common.AutoFixture.Attributes;

View File

@@ -1,4 +1,7 @@
using AutoFixture;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using AutoFixture;
using Bit.Test.Common.AutoFixture.JsonDocumentFixtures;
namespace Bit.Test.Common.AutoFixture.Attributes;

View File

@@ -1,4 +1,7 @@
using AutoFixture;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using AutoFixture;
using AutoFixture.Kernel;
namespace Bit.Test.Common.AutoFixture;

View File

@@ -1,4 +1,7 @@
using System.Text.Json;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Text.Json;
using AutoFixture;
using AutoFixture.Kernel;

View File

@@ -1,4 +1,7 @@
using System.Reflection;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Reflection;
using AutoFixture;
using AutoFixture.Kernel;

View File

@@ -1,4 +1,7 @@
using AutoFixture;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using AutoFixture;
using AutoFixture.Kernel;
namespace Bit.Test.Common.AutoFixture.Attributes;

View File

@@ -1,4 +1,7 @@
using AutoFixture;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using AutoFixture;
using Bit.Core.Services;
using Bit.Core.Settings;
using Microsoft.Extensions.Time.Testing;

View File

@@ -1,4 +1,7 @@
using Bit.Core.Tokens;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Core.Tokens;
namespace Bit.Test.Common.Fakes;

View File

@@ -1,4 +1,7 @@
using System.Collections;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Collections;
using System.Diagnostics;
using System.Linq.Expressions;
using System.Reflection;

View File

@@ -1,4 +1,7 @@
using System.Net;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Net;
namespace Bit.Test.Common.MockedHttpClient;

View File

@@ -1,4 +1,7 @@
using System.Net;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.Net;
using System.Net.Http.Headers;
using System.Text;