From af2f9a90537202cae24842b4fa388def525264f2 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Mon, 21 Jul 2025 09:23:57 +0300 Subject: [PATCH] chore: fixed compiler warning on exception declared but never used --- Platforms/Desktop/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platforms/Desktop/Program.cs b/Platforms/Desktop/Program.cs index 8986156..1f5b679 100644 --- a/Platforms/Desktop/Program.cs +++ b/Platforms/Desktop/Program.cs @@ -55,7 +55,7 @@ static ClientConfiguration GetOrCreateConfiguration(ISerializer serializer, ILog clientConfiguration = serializer.Deserialize(File.ReadAllText(settingsPath)); logger.Log(clientConfiguration, $"Configuration is successfully read"); } - catch (FileNotFoundException _) + catch (FileNotFoundException) { clientConfiguration = new(); logger.Log(clientConfiguration, $"Configuration does not exist");