diff --git a/src/Umbraco.Core/Cache/CacheRefresherCollectionBuilder.cs b/src/Umbraco.Abstractions/Cache/CacheRefresherCollectionBuilder.cs
similarity index 100%
rename from src/Umbraco.Core/Cache/CacheRefresherCollectionBuilder.cs
rename to src/Umbraco.Abstractions/Cache/CacheRefresherCollectionBuilder.cs
diff --git a/src/Umbraco.Abstractions/Cache/FastDictionaryAppCache.cs b/src/Umbraco.Abstractions/Cache/FastDictionaryAppCache.cs
index 3bd29c3f5f..35ba4d08ca 100644
--- a/src/Umbraco.Abstractions/Cache/FastDictionaryAppCache.cs
+++ b/src/Umbraco.Abstractions/Cache/FastDictionaryAppCache.cs
@@ -15,21 +15,21 @@ namespace Umbraco.Core.Cache
///
/// Gets the internal items dictionary, for tests only!
///
- internal readonly ConcurrentDictionary> Items = new ConcurrentDictionary>();
+ private readonly ConcurrentDictionary> _items = new ConcurrentDictionary>();
- public int Count => Items.Count;
+ public int Count => _items.Count;
///
public object Get(string cacheKey)
{
- Items.TryGetValue(cacheKey, out var result); // else null
+ _items.TryGetValue(cacheKey, out var result); // else null
return result == null ? null : SafeLazy.GetSafeLazyValue(result); // return exceptions as null
}
///
public object Get(string cacheKey, Func