From 73ce33a58802c2e8412a00453fbf7554922f60eb Mon Sep 17 00:00:00 2001 From: Sebastien Lebreton Date: Thu, 29 Aug 2024 15:49:37 +0200 Subject: [PATCH] Update suppressions --- src/Microsoft.Unity.Analyzers/Nullability.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Microsoft.Unity.Analyzers/Nullability.cs b/src/Microsoft.Unity.Analyzers/Nullability.cs index 4be8c66..134af43 100644 --- a/src/Microsoft.Unity.Analyzers/Nullability.cs +++ b/src/Microsoft.Unity.Analyzers/Nullability.cs @@ -3,7 +3,9 @@ * Licensed under the MIT License. See LICENSE in the project root for license information. *-------------------------------------------------------------------------------------------*/ +#pragma warning disable IDE0130 namespace System.Diagnostics.CodeAnalysis; +#pragma warning restore IDE0130 [AttributeUsage(AttributeTargets.Parameter)] internal sealed class NotNullWhenAttribute(bool returnValue) : Attribute