# HG changeset patch # User Augie Fackler # Date 1580932882 18000 # Node ID c86256bd4eb8fec1a665a9ec37c24885c0930dab # Parent 04a3ae7aba1436e8518493888867d4546c1eaae1 manifest: remove `.new()` from the interface Nothing used it. Differential Revision: https://phab.mercurial-scm.org/D8079 diff -r 04a3ae7aba14 -r c86256bd4eb8 mercurial/interfaces/repository.py --- a/mercurial/interfaces/repository.py Wed Jan 29 13:39:50 2020 -0800 +++ b/mercurial/interfaces/repository.py Wed Feb 05 15:01:22 2020 -0500 @@ -1071,14 +1071,6 @@ as part of a larger interface. """ - def new(): - """Obtain a new manifest instance. - - Returns an object conforming to the ``imanifestrevisionwritable`` - interface. The instance will be associated with the same - ``imanifestlog`` collection as this instance. - """ - def copy(): """Obtain a copy of this manifest instance. diff -r 04a3ae7aba14 -r c86256bd4eb8 mercurial/manifest.py --- a/mercurial/manifest.py Wed Jan 29 13:39:50 2020 -0800 +++ b/mercurial/manifest.py Wed Feb 05 15:01:22 2020 -0500 @@ -1921,9 +1921,6 @@ def _storage(self): return self._manifestlog.getstorage(b'') - def new(self): - return memmanifestctx(self._manifestlog) - def copy(self): memmf = memmanifestctx(self._manifestlog) memmf._manifestdict = self.read().copy() @@ -1970,9 +1967,6 @@ def node(self): return self._node - def new(self): - return memmanifestctx(self._manifestlog) - def copy(self): memmf = memmanifestctx(self._manifestlog) memmf._manifestdict = self.read().copy() @@ -2037,9 +2031,6 @@ def _storage(self): return self._manifestlog.getstorage(b'') - def new(self, dir=b''): - return memtreemanifestctx(self._manifestlog, dir=dir) - def copy(self): memmf = memtreemanifestctx(self._manifestlog, dir=self._dir) memmf._treemanifest = self._treemanifest.copy() @@ -2122,9 +2113,6 @@ def node(self): return self._node - def new(self, dir=b''): - return memtreemanifestctx(self._manifestlog, dir=dir) - def copy(self): memmf = memtreemanifestctx(self._manifestlog, dir=self._dir) memmf._treemanifest = self.read().copy() diff -r 04a3ae7aba14 -r c86256bd4eb8 tests/test-check-interfaces.py --- a/tests/test-check-interfaces.py Wed Jan 29 13:39:50 2020 -0800 +++ b/tests/test-check-interfaces.py Wed Feb 05 15:01:22 2020 -0500 @@ -252,7 +252,6 @@ checkzobject(mctx) # Conforms to imanifestrevisionwritable. - checkzobject(mctx.new()) checkzobject(mctx.copy()) # Conforms to imanifestdict.