Commit f2122aa4 authored by Jens Vagelpohl's avatar Jens Vagelpohl

- remove debugging code [ci skip]

parent 447c0c95
......@@ -434,8 +434,6 @@ class CircularCacheSimulation(Simulation):
# Storing current revision.
if oid in self.current: # we already have it in cache
if evhit:
import pdb
pdb.set_trace()
raise ValueError('WTF')
return
self.current[oid] = start_tid
......@@ -444,8 +442,6 @@ class CircularCacheSimulation(Simulation):
self.add(oid, size, start_tid)
return
if evhit:
import pdb
pdb.set_trace()
raise ValueError('WTF')
# Storing non-current revision.
L = self.noncurrent.setdefault(oid, [])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment