Remove needless call to evict()

pull/1815/head
Erik Johnston 2017-01-17 11:42:26 +00:00
parent d906206049
commit 1ccd5676e3
1 changed files with 0 additions and 1 deletions

View File

@ -154,7 +154,6 @@ class LruCache(object):
def cache_set_default(key, value):
node = cache.get(key, None)
if node is not None:
evict() # As the new node may be bigger than the old node.
return node.value
else:
add_node(key, value)