1
0
mirror of https://github.com/bitwarden/server synced 2026-01-21 03:43:53 +00:00

Add #nullable disable to tools code (#6058)

This commit is contained in:
Justin Baur
2025-07-08 14:02:15 -04:00
committed by GitHub
parent b4c9133d12
commit 8fdd26bf1c
22 changed files with 88 additions and 22 deletions

View File

@@ -1,4 +1,7 @@
using Bit.Core.Exceptions;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Core.Exceptions;
using Bit.Core.Platform.Push;
using Bit.Core.Tools.Entities;
using Bit.Core.Tools.Enums;

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 Bit.Core.Exceptions;
using Bit.Core.Platform.Push;
using Bit.Core.Tools.Entities;

View File

@@ -1,4 +1,7 @@
using Azure.Storage.Blobs;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using Azure.Storage.Sas;
using Bit.Core.Enums;

View File

@@ -1,4 +1,7 @@
using Bit.Core.Enums;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Core.Enums;
using Bit.Core.Settings;
using Bit.Core.Tools.Entities;

View File

@@ -1,4 +1,7 @@
using Bit.Core.AdminConsole.Enums;
// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using Bit.Core.AdminConsole.Enums;
using Bit.Core.AdminConsole.Models.Data.Organizations.Policies;
using Bit.Core.AdminConsole.OrganizationFeatures.Policies;
using Bit.Core.AdminConsole.OrganizationFeatures.Policies.PolicyRequirements;