Commit f2122aa4 authored by Jens Vagelpohl's avatar Jens Vagelpohl

- remove debugging code [ci skip]

parent 447c0c95
...@@ -434,8 +434,6 @@ class CircularCacheSimulation(Simulation): ...@@ -434,8 +434,6 @@ class CircularCacheSimulation(Simulation):
# Storing current revision. # Storing current revision.
if oid in self.current: # we already have it in cache if oid in self.current: # we already have it in cache
if evhit: if evhit:
import pdb
pdb.set_trace()
raise ValueError('WTF') raise ValueError('WTF')
return return
self.current[oid] = start_tid self.current[oid] = start_tid
...@@ -444,8 +442,6 @@ class CircularCacheSimulation(Simulation): ...@@ -444,8 +442,6 @@ class CircularCacheSimulation(Simulation):
self.add(oid, size, start_tid) self.add(oid, size, start_tid)
return return
if evhit: if evhit:
import pdb
pdb.set_trace()
raise ValueError('WTF') raise ValueError('WTF')
# Storing non-current revision. # Storing non-current revision.
L = self.noncurrent.setdefault(oid, []) 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