# HG changeset patch # User Gregory Szorc # Date 1537319021 25200 # Node ID 87eeb69662200b657e26c8275c3389cdfbb41211 # Parent 6d6ddcfa62a6f4b49da2f39a39bb4f4c98642bbb filelog: stop proxying _addrevision() (API) There are no callers of this API in core. And I'm not sure why this proxy was added in the first place, as the commit that added it (1541e1a8e87d) didn't appear to have any callers in the repo either. Who knows. Differential Revision: https://phab.mercurial-scm.org/D4659 diff -r 6d6ddcfa62a6 -r 87eeb6966220 mercurial/filelog.py --- a/mercurial/filelog.py Tue Sep 18 17:57:36 2018 -0700 +++ b/mercurial/filelog.py Tue Sep 18 18:03:41 2018 -0700 @@ -214,9 +214,6 @@ return self._revlog.clone(tr, destrevlog._revlog, **kwargs) - def _addrevision(self, *args, **kwargs): - return self._revlog._addrevision(*args, **kwargs) - class narrowfilelog(filelog): """Filelog variation to be used with narrow stores."""