diff --git a/implementations/caching/CacheEntry.h b/implementations/caching/CacheEntry.h index 7c11f0c0..cbe03af8 100644 --- a/implementations/caching/CacheEntry.h +++ b/implementations/caching/CacheEntry.h @@ -26,18 +26,9 @@ public: return std::move(_block); } - void setNextEntry(const CacheEntry *entry) { - _nextEntry = entry; - } - - const CacheEntry *nextEntry() { - return _nextEntry; - } - private: boost::posix_time::ptime _lastAccess; std::unique_ptr _block; - const CacheEntry *_nextEntry; static boost::posix_time::ptime currentTime() { return boost::posix_time::microsec_clock::local_time();