# HG changeset patch # User Raphaël Gomès # Date 2021-12-23 13:49:05 # Node ID 61fe7e17f21b4172d10817a6f08c0aca77eb6887 # Parent c514936d92b446a24e0ae34d61c758187ffc6f42 discovery: remove deprecated API Differential Revision: https://phab.mercurial-scm.org/D11952 diff --git a/mercurial/discovery.py b/mercurial/discovery.py --- a/mercurial/discovery.py +++ b/mercurial/discovery.py @@ -141,17 +141,6 @@ class outgoing(object): self._computecommonmissing() return self._missing - @property - def missingheads(self): - util.nouideprecwarn( - b'outgoing.missingheads never contained what the name suggests and ' - b'was renamed to outgoing.ancestorsof. check your code for ' - b'correctness.', - b'5.5', - stacklevel=2, - ) - return self.ancestorsof - def findcommonoutgoing( repo, other, onlyheads=None, force=False, commoninc=None, portable=False