dirstate-item: implement `from_p2_removed` in a simpler way
We can simply use the underlying attribute.
Differential Revision: https://phab.mercurial-scm.org/D11369
--- a/mercurial/pure/parsers.py Fri Aug 27 17:09:49 2021 +0200
+++ b/mercurial/pure/parsers.py Fri Aug 27 17:10:26 2021 +0200
@@ -295,7 +295,7 @@
This property seems like an abstraction leakage and should probably be
dealt in this class (or maybe the dirstatemap) directly.
"""
- return self.v1_state() == b'r' and self.v1_size() == FROM_P2
+ return self.removed and self._clean_p2
@property
def removed(self):