Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Umbraco.Core/PublishedCache/IPublishedCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public interface IPublishedCache
/// </summary>
/// <param name="id">The content type unique identifier.</param>
/// <returns>The content type, or null.</returns>
[Obsolete("Please use the IContentTypeCacheService instead, scheduled for removal in V16")]
[Obsolete("Please use the IPublishedContentTypeCache instead, scheduled for removal in V16")]
IPublishedContentType? GetContentType(int id);

/// <summary>
Expand All @@ -110,7 +110,7 @@ public interface IPublishedCache
/// <param name="alias">The content type alias.</param>
/// <returns>The content type, or null.</returns>
/// <remarks>The alias is case-insensitive.</remarks>
[Obsolete("Please use the IContentTypeCacheService instead, scheduled for removal in V16")]
[Obsolete("Please use the IPublishedContentTypeCache instead, scheduled for removal in V16")]
IPublishedContentType? GetContentType(string alias);

/// <summary>
Expand All @@ -126,6 +126,6 @@ public interface IPublishedCache
/// </summary>
/// <param name="key">The content type key.</param>
/// <returns>The content type, or null.</returns>
[Obsolete("Please use the IContentTypeCacheService instead, scheduled for removal in V16")]
[Obsolete("Please use the IPublishedContentTypeCache instead, scheduled for removal in V16")]
IPublishedContentType? GetContentType(Guid key);
}