cosmetic: dotnet format c# code (#12832)

This commit is contained in:
Diego Heras
2022-01-16 11:30:11 +01:00
committed by GitHub
parent d457cd336d
commit 42ca019942
9 changed files with 43 additions and 33 deletions

View File

@@ -150,7 +150,7 @@ namespace Jackett.Common.Services
if (!File.Exists(fullPath))
{
logger.Debug("Config file does not exist: " + fullPath);
return default(T);
return default;
}
return serializeService.DeSerialise<T>(File.ReadAllText(fullPath));