# HG changeset patch # User Gregory Szorc # Date 1537320107 25200 # 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 -r 87eeb6966220 -r 03bedf1d09fc mercurial/filelog.py --- a/mercurial/filelog.py Tue Sep 18 18:03:41 2018 -0700 +++ b/mercurial/filelog.py Tue Sep 18 18:21:47 2018 -0700 @@ -201,10 +201,6 @@ self._revlog.indexfile = value @property - def datafile(self): - return self._revlog.datafile - - @property def opener(self): return self._revlog.opener