Skip to content

Commit 9c48ccd

Browse files
author
Warren Buckley
committed
Just use a getter only - some feedback from CMS core team Nikolaj L
1 parent 37947f6 commit 9c48ccd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Our.Umbraco.TagHelpers/Services/IUmbracoTagHelperCacheKeys.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ namespace Our.Umbraco.TagHelpers.Services
55
{
66
public interface IUmbracoTagHelperCacheKeys
77
{
8-
Dictionary<string, CacheTagKey> CacheKeys { get; set; }
8+
Dictionary<string, CacheTagKey> CacheKeys { get; }
99
}
1010
}

Our.Umbraco.TagHelpers/Services/UmbracoTagHelperCacheKeys.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ namespace Our.Umbraco.TagHelpers.Services
55
{
66
public class UmbracoTagHelperCacheKeys : IUmbracoTagHelperCacheKeys
77
{
8-
public Dictionary<string,CacheTagKey> CacheKeys { get; set; } = new Dictionary<string,CacheTagKey>();
8+
public Dictionary<string,CacheTagKey> CacheKeys { get; } = new Dictionary<string,CacheTagKey>();
99
}
1010
}

0 commit comments

Comments
 (0)