.NET Format Style Fixes

This commit is contained in:
refringe
2025-06-18 17:09:20 +00:00
committed by Format Bot
parent ca0a7d6345
commit 6e01428b2b
774 changed files with 23507 additions and 40003 deletions
@@ -19,7 +19,8 @@ public class BundleHashCacheService
ISptLogger<BundleHashCacheService> logger,
JsonUtil jsonUtil,
HashUtil hashUtil,
FileUtil fileUtil)
FileUtil fileUtil
)
{
_logger = logger;
_jsonUtil = jsonUtil;
@@ -46,7 +47,10 @@ public class BundleHashCacheService
Directory.CreateDirectory(_bundleHashCachePath);
}
_fileUtil.WriteFile(Path.Join(_bundleHashCachePath, _cacheName), _jsonUtil.Serialize(_bundleHashes));
_fileUtil.WriteFile(
Path.Join(_bundleHashCachePath, _cacheName),
_jsonUtil.Serialize(_bundleHashes)
);
_logger.Debug($"Bundle: {bundlePath} hash stored in: ${_bundleHashCachePath}");
}