summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repoze/lru/__init__.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/repoze/lru/__init__.py b/repoze/lru/__init__.py
index 8e46967..64bd7ba 100644
--- a/repoze/lru/__init__.py
+++ b/repoze/lru/__init__.py
@@ -38,10 +38,6 @@ class LRUCache(object):
return default
pos, val = datum
self.clock[pos]['ref'] = True
- hand = pos + 1
- if hand > self.maxpos:
- hand = 0
- self.hand = hand
return val
def put(self, key, val, _marker=_marker):