From 0986784d72f6adb3da28d3cdc709e544f38bf98e Mon Sep 17 00:00:00 2001 From: Daniel Stolt Date: Wed, 11 Feb 2015 15:58:14 +0100 Subject: [PATCH] Revert "Made private members protected in OutputCacheFilter." This reverts commit 0ba6b1d7888b87f6cb08f659d49fbd35d8bbcef8. --- .../Filters/OutputCacheFilter.cs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs b/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs index bc2034d39..8a8871eef 100644 --- a/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs +++ b/src/Orchard.Web/Modules/Orchard.OutputCache/Filters/OutputCacheFilter.cs @@ -33,16 +33,16 @@ namespace Orchard.OutputCache.Filters { private static readonly ConcurrentDictionary _cacheKeyLocks = new ConcurrentDictionary(); // Dependencies. - protected readonly ICacheManager _cacheManager; - protected readonly IOutputCacheStorageProvider _cacheStorageProvider; - protected readonly ITagCache _tagCache; - protected readonly IDisplayedContentItemHandler _displayedContentItemHandler; - protected readonly IWorkContextAccessor _workContextAccessor; - protected readonly IThemeManager _themeManager; - protected readonly IClock _clock; - protected readonly ICacheService _cacheService; - protected readonly ISignals _signals; - protected readonly ShellSettings _shellSettings; + private readonly ICacheManager _cacheManager; + private readonly IOutputCacheStorageProvider _cacheStorageProvider; + private readonly ITagCache _tagCache; + private readonly IDisplayedContentItemHandler _displayedContentItemHandler; + private readonly IWorkContextAccessor _workContextAccessor; + private readonly IThemeManager _themeManager; + private readonly IClock _clock; + private readonly ICacheService _cacheService; + private readonly ISignals _signals; + private readonly ShellSettings _shellSettings; public ILogger Logger { get; set; } public OutputCacheFilter(