From 4f1e2f10ed95f6da1559fc0b24aa2019ac6074fa Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 5 Oct 2023 01:05:20 +0100 Subject: [PATCH] Annotate or remove unused elements. --- AaruConsole.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AaruConsole.cs b/AaruConsole.cs index 3363510..b7ad8a6 100644 --- a/AaruConsole.cs +++ b/AaruConsole.cs @@ -30,6 +30,8 @@ // Copyright © 2011-2023 Natalia Portillo // ****************************************************************************/ +using System.Diagnostics.CodeAnalysis; + namespace Aaru.Console; /// @@ -109,6 +111,7 @@ public delegate void DebugWithModuleWriteLineHandler(string module, string forma /// Implements a console abstraction that defines four level of messages that can be routed to different consoles: /// standard, error, verbose and debug. /// +[SuppressMessage("ReSharper", "UnusedMember.Global")] public static class AaruConsole { /// Event to receive writings to the standard output console that should be followed by a line termination.