diff mercurial/pure/parsers.py @ 48155:b2af515b4faf

dirstate-item: drop the legacy new_merged constructor Nobody is calling it anymore. Its purposes has been filled. Differential Revision: https://phab.mercurial-scm.org/D11599
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 01 Oct 2021 09:14:10 +0200
parents 7a8c9869e4fe
children d342815ff827
line wrap: on
line diff
--- a/mercurial/pure/parsers.py	Fri Oct 01 09:12:52 2021 +0200
+++ b/mercurial/pure/parsers.py	Fri Oct 01 09:14:10 2021 +0200
@@ -117,14 +117,6 @@
         return cls(wc_tracked=True)
 
     @classmethod
-    def new_merged(cls):
-        """constructor to help legacy API to build a new "merged" item
-
-        Should eventually be removed
-        """
-        return cls(wc_tracked=True, p1_tracked=True, p2_info=True)
-
-    @classmethod
     def new_from_p2(cls):
         """constructor to help legacy API to build a new "from_p2" item