.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
@@ -4,9 +4,7 @@ using SPTarkov.Server.Core.Utils.Cloners;
namespace SPTarkov.Server.Core.Services;
[Injectable(InjectionType.Singleton)]
public class InMemoryCacheService(
ICloner _cloner
)
public class InMemoryCacheService(ICloner _cloner)
{
protected Dictionary<string, object?> _cacheData = new();
@@ -29,7 +27,7 @@ public class InMemoryCacheService(
{
if (_cacheData.ContainsKey(key))
{
return (T) _cacheData[key];
return (T)_cacheData[key];
}
return default;