This is just Jetbrains formatting and code syntax styling
This commit is contained in:
@@ -23,10 +23,7 @@ public class InMemoryCacheService(
|
||||
// Stored data
|
||||
public T? GetDataByKey<T>(string key)
|
||||
{
|
||||
if (_cacheData.ContainsKey(key))
|
||||
{
|
||||
return (T)_cacheData[key];
|
||||
}
|
||||
if (_cacheData.ContainsKey(key)) return (T)_cacheData[key];
|
||||
|
||||
return default;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user