From cf8a5915dfd4ea092ed31df588f54e338a87e68f Mon Sep 17 00:00:00 2001 From: jzablocki Date: Wed, 1 Aug 2012 17:46:32 -0400 Subject: [PATCH] Removed unused result variable from Set operation --- Couchbase.AspNet/OutputCache/CouchbaseOutputCacheProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Couchbase.AspNet/OutputCache/CouchbaseOutputCacheProvider.cs b/Couchbase.AspNet/OutputCache/CouchbaseOutputCacheProvider.cs index 448d9bb..a6ed51a 100644 --- a/Couchbase.AspNet/OutputCache/CouchbaseOutputCacheProvider.cs +++ b/Couchbase.AspNet/OutputCache/CouchbaseOutputCacheProvider.cs @@ -49,7 +49,7 @@ public override void Remove(string key) public override void Set(string key, object entry, DateTime utcExpiry) { - var result = _client.Store(StoreMode.Set, key, entry, utcExpiry); + _client.Store(StoreMode.Set, key, entry, utcExpiry); } } }