aboutsummaryrefslogtreecommitdiff
path: root/internal/lru/get.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lru/get.go')
-rw-r--r--internal/lru/get.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/lru/get.go b/internal/lru/get.go
index 92196003..81383945 100644
--- a/internal/lru/get.go
+++ b/internal/lru/get.go
@@ -1,6 +1,8 @@
package lru
// Get returns value for key and marks it most-recently-used.
+//
+//nolint:ireturn
func (cache *Cache[K, V]) Get(key K) (V, bool) {
elem, ok := cache.items[key]
if !ok {