# HG changeset patch # User Gregory Szorc # Date 2018-09-19 00:56:15 # Node ID 42aa61fc55443994d8b36bc0008f37aca83fd41e # Parent a6b3c4c1019f9ad2820df24205692f8b46ed80d4 filelog: stop proxying start(), end(), and length() (API) These were needed by the censoring code, which formerly lived in the censor extension. Now that there is a censoring API on the file storage interface, nothing uses these methods and we can stop proxying them. Differential Revision: https://phab.mercurial-scm.org/D4657 diff --git a/mercurial/filelog.py b/mercurial/filelog.py --- a/mercurial/filelog.py +++ b/mercurial/filelog.py @@ -214,15 +214,6 @@ class filelog(object): return self._revlog.clone(tr, destrevlog._revlog, **kwargs) - def start(self, rev): - return self._revlog.start(rev) - - def end(self, rev): - return self._revlog.end(rev) - - def length(self, rev): - return self._revlog.length(rev) - def compress(self, data): return self._revlog.compress(data)