From 073a6cb39df7616076c0fd8f5caafa3f1dcc5492 Mon Sep 17 00:00:00 2001 From: lahma Date: Fri, 24 Jul 2009 15:13:42 +0000 Subject: [PATCH] Reverted unintentional change that showed problem with attributes without cache keys --- .../Aspects/Cache/CacheAspectIntegrationTests.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/Spring/Spring.Aop.Tests/Aspects/Cache/CacheAspectIntegrationTests.cs b/test/Spring/Spring.Aop.Tests/Aspects/Cache/CacheAspectIntegrationTests.cs index c976079c..77add864 100644 --- a/test/Spring/Spring.Aop.Tests/Aspects/Cache/CacheAspectIntegrationTests.cs +++ b/test/Spring/Spring.Aop.Tests/Aspects/Cache/CacheAspectIntegrationTests.cs @@ -80,8 +80,6 @@ namespace Spring.Aspects.Cache store.DeleteAll(); Assert.AreEqual(0, cache.Count); - - store.GetAllNoCacheKey(); } #if NET_2_0 @@ -113,7 +111,6 @@ namespace Spring.Aspects.Cache public interface IInventorStore { IList GetAll(); - IList GetAllNoCacheKey(); Inventor Load(string name); void Save(Inventor inventor); void Delete(Inventor inventor); @@ -138,13 +135,6 @@ namespace Spring.Aspects.Cache return new ArrayList(inventors.Values); } - - [CacheResultItems(CacheName = "inventors")] - public IList GetAllNoCacheKey() - { - return new ArrayList(inventors.Values); - } - [CacheResult("inventors", "#name")] public Inventor Load(string name) {