# HG changeset patch # User Gregory Szorc # Date 2018-09-19 01:21:47 # Node ID 03bedf1d09fccf507441601735e7edfbf4800d24 # Parent 87eeb69662200b657e26c8275c3389cdfbb41211 filelog: stop proxying datafile (API) It appears the censor code was the last user of this proxy. With there being a dedicated censor API, we can drop the proxy. Differential Revision: https://phab.mercurial-scm.org/D4660 diff --git a/mercurial/filelog.py b/mercurial/filelog.py --- a/mercurial/filelog.py +++ b/mercurial/filelog.py @@ -201,10 +201,6 @@ class filelog(object): self._revlog.indexfile = value @property - def datafile(self): - return self._revlog.datafile - - @property def opener(self): return self._revlog.opener