Moving Orchard.Caching extension methods to the same namespace as the service they extend

This commit is contained in:
Lombiq
2015-02-21 15:24:01 +01:00
committed by Zoltán Lehóczky
parent bf3bd93daa
commit e84a180412

View File

@@ -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);