filelog: stop proxying compress() (API)
The censoring code was previously relying on this. With a dedicated
censoring API on the interface, no consumers are left and we can
stop proxying this method.
Differential Revision: https://phab.mercurial-scm.org/D4658
--- a/mercurial/filelog.py Tue Sep 18 17:56:15 2018 -0700
+++ b/mercurial/filelog.py Tue Sep 18 17:57:36 2018 -0700
@@ -214,9 +214,6 @@
return self._revlog.clone(tr, destrevlog._revlog, **kwargs)
- def compress(self, data):
- return self._revlog.compress(data)
-
def _addrevision(self, *args, **kwargs):
return self._revlog._addrevision(*args, **kwargs)