Skip to content

Commit

Permalink
load and loadEX are no more
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Jul 18, 2016
1 parent 80f6a4b commit dd2d97c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/ZEO/StorageServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ def setup_delegation(self):
# XXX deprecated: but ZODB tests use getTid. They shouldn't
self.getTid = storage.getTid

self.load = storage.load
self.loadSerial = storage.loadSerial
record_iternext = getattr(storage, 'record_iternext', None)
if record_iternext is not None:
Expand Down Expand Up @@ -242,10 +241,6 @@ def get_size_info(self):
'size': self.storage.getSize(),
}

def loadEx(self, oid):
self.stats.loads += 1
return self.storage.load(oid, '')

def loadBefore(self, oid, tid):
self.stats.loads += 1
return self.storage.loadBefore(oid, tid)
Expand Down

0 comments on commit dd2d97c

Please sign in to comment.