chore: fixed compiler warning on exception declared but never used

This commit is contained in:
Syntriax 2025-07-21 09:23:57 +03:00
parent 7130809a23
commit af2f9a9053

View File

@ -55,7 +55,7 @@ static ClientConfiguration GetOrCreateConfiguration(ISerializer serializer, ILog
clientConfiguration = serializer.Deserialize<ClientConfiguration>(File.ReadAllText(settingsPath));
logger.Log(clientConfiguration, $"Configuration is successfully read");
}
catch (FileNotFoundException _)
catch (FileNotFoundException)
{
clientConfiguration = new();
logger.Log(clientConfiguration, $"Configuration does not exist");