# HG changeset patch # User Siddharth Agarwal # Date 2013-09-07 06:05:33 # Node ID 6031fe568cd04263c1b03df76e0a769c4e6177cd # Parent e17976978ee46fe45aaa78a728f5a9231a68e9ee revlog: remove _chunkbase since it is no longer used This was introduced in 2011 for the lwcopy feature but never actually got used. A similar hook can easily be reintroduced if needed in the future. diff --git a/mercurial/revlog.py b/mercurial/revlog.py --- a/mercurial/revlog.py +++ b/mercurial/revlog.py @@ -883,9 +883,6 @@ class revlog(object): return l - def _chunkbase(self, rev): - return self._chunk(rev) - def _chunkclear(self): self._chunkcache = (0, '')