non-working cached repository.

This commit is contained in:
Keivan Beigi
2013-05-30 16:32:50 -07:00
parent 23e9c725f3
commit 5b2410da3f
6 changed files with 92 additions and 5 deletions
+15
View File
@@ -64,5 +64,20 @@ namespace NzbDrone.Common.Cache
T value;
_store.TryRemove(key, out value);
}
public ICollection<T> Values
{
get
{
return _store.Values;
}
}
public ICollection<string> Keys
{
get
{
return _store.Keys;
}
}
}
}