mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Moving Orchard.Caching extension methods to the same namespace as the service they extend
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
using System;
|
||||
using Orchard.Caching.Services;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace Orchard.Caching {
|
||||
namespace Orchard.Caching.Services {
|
||||
public static class CachingExtensions {
|
||||
public static T Get<T>(this ICacheStorageProvider provider, string key) {
|
||||
return (T)provider.Get<T>(key);
|
||||
|
Reference in New Issue
Block a user