Web.Routing - go public

This commit is contained in:
Stephan
2013-01-24 08:51:27 -01:00
parent edb84b3c97
commit 5110e0ec0e
31 changed files with 37 additions and 37 deletions

View File

@@ -9,7 +9,7 @@ namespace Umbraco.Web.PublishedCache
/// <summary>
/// Provides access to cached documents in a specified context.
/// </summary>
internal class ContextualPublishedContentCache : ContextualPublishedCache
public class ContextualPublishedContentCache : ContextualPublishedCache
{
private readonly IPublishedContentCache _cache;
@@ -18,7 +18,7 @@ namespace Umbraco.Web.PublishedCache
/// </summary>
/// <param name="cache">A published content cache.</param>
/// <param name="umbracoContext">A context.</param>
public ContextualPublishedContentCache(IPublishedContentCache cache, UmbracoContext umbracoContext)
internal ContextualPublishedContentCache(IPublishedContentCache cache, UmbracoContext umbracoContext)
: base(umbracoContext, cache)
{
_cache = cache;