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

Add #nullable disable to vault code (#6053)

This commit is contained in:
Justin Baur
2025-07-08 11:46:13 -04:00
committed by GitHub
parent fa0c9cb387
commit 50461518e7
53 changed files with 212 additions and 53 deletions

View File

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

View File

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

View File

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

View File

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