Commit fe9aebc0 authored by Jens Vagelpohl's avatar Jens Vagelpohl

- remove debugging code [ci skip]

parent 0e19e22b
...@@ -433,7 +433,6 @@ class CircularCacheSimulation(Simulation): ...@@ -433,7 +433,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
...@@ -442,7 +441,6 @@ class CircularCacheSimulation(Simulation): ...@@ -442,7 +441,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