# HG changeset patch # User Martin von Zweigbergk # Date 1563229762 25200 # Node ID 97b03f0e7c7b179c5849b9b30dfedaf5ec7763f8 # Parent 5c36a7e4912a3d43d298e72f17ba735243fb732c copies: remove unnecessary override of p[12]copies() in workingctx The implementation is identical to the version inherited from basectx. Differential Revision: https://phab.mercurial-scm.org/D6647 diff -r 5c36a7e4912a -r 97b03f0e7c7b mercurial/context.py --- a/mercurial/context.py Fri Jul 12 19:38:18 2019 -0400 +++ b/mercurial/context.py Mon Jul 15 15:29:22 2019 -0700 @@ -1592,10 +1592,6 @@ elif src in p2manifest: p2copies[dst] = src return p1copies, p2copies - def p1copies(self): - return self._copies[0] - def p2copies(self): - return self._copies[1] @propertycache def _manifest(self):