[Request] [+ ] D12537: rust-dirstatemap: stop using `.state` in `is_from_other_parent`
Alphare (Raphaël Gomès)
phabricator at mercurial-scm.org
Tue Apr 12 16:05:55 UTC 2022
Alphare created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is a deprecated API and will be removed one day.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12537
AFFECTED FILES
rust/hg-core/src/dirstate/entry.rs
CHANGE DETAILS
diff --git a/rust/hg-core/src/dirstate/entry.rs b/rust/hg-core/src/dirstate/entry.rs
--- a/rust/hg-core/src/dirstate/entry.rs
+++ b/rust/hg-core/src/dirstate/entry.rs
@@ -655,8 +655,7 @@
}
pub(crate) fn is_from_other_parent(&self) -> bool {
- self.state() == EntryState::Normal
- && self.size() == SIZE_FROM_OTHER_PARENT
+ self.flags.contains(Flags::WDIR_TRACKED | Flags::P2_INFO)
}
// TODO: other platforms
To: Alphare, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20220412/3e3f51e3/attachment.html>
More information about the Mercurial-patches
mailing list