Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/discovery.py @ 48565:61fe7e17f21b
discovery: remove deprecated API
Differential Revision: https://phab.mercurial-scm.org/D11952
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Thu, 23 Dec 2021 14:49:05 +0100 |
parents | d55b71393907 |
children | 053a5bf508da |
comparison
equal
deleted
inserted
replaced
48564:c514936d92b4 | 48565:61fe7e17f21b |
---|---|
138 @util.propertycache | 138 @util.propertycache |
139 def missing(self): | 139 def missing(self): |
140 if self._missing is None: | 140 if self._missing is None: |
141 self._computecommonmissing() | 141 self._computecommonmissing() |
142 return self._missing | 142 return self._missing |
143 | |
144 @property | |
145 def missingheads(self): | |
146 util.nouideprecwarn( | |
147 b'outgoing.missingheads never contained what the name suggests and ' | |
148 b'was renamed to outgoing.ancestorsof. check your code for ' | |
149 b'correctness.', | |
150 b'5.5', | |
151 stacklevel=2, | |
152 ) | |
153 return self.ancestorsof | |
154 | 143 |
155 | 144 |
156 def findcommonoutgoing( | 145 def findcommonoutgoing( |
157 repo, other, onlyheads=None, force=False, commoninc=None, portable=False | 146 repo, other, onlyheads=None, force=False, commoninc=None, portable=False |
158 ): | 147 ): |