From b91ffc3ed9d546effd88b88dc2750cff543c8add Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Thu, 27 Mar 2025 07:38:52 +0100 Subject: [PATCH] Fixed warning --- app/MindWork AI Studio/Tools/PluginSystem/PluginBase.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/MindWork AI Studio/Tools/PluginSystem/PluginBase.cs b/app/MindWork AI Studio/Tools/PluginSystem/PluginBase.cs index 8960369a..61c42354 100644 --- a/app/MindWork AI Studio/Tools/PluginSystem/PluginBase.cs +++ b/app/MindWork AI Studio/Tools/PluginSystem/PluginBase.cs @@ -458,6 +458,8 @@ public abstract class PluginBase : IPluginMetadata /// The error message, when the icon could not be read. /// The read icon as SVG. /// True, when the icon could be read successfully. + // ReSharper disable once OutParameterValueIsAlwaysDiscarded.Local + // ReSharper disable once UnusedMethodReturnValue.Local private bool TryInitIconSVG(out string message, out string iconSVG) { if (!this.state.Environment["ICON_SVG"].TryRead(out iconSVG))