rust/hg-core/src/dirstate_tree/on_disk.rs
changeset 49136 3f5e207f78be
parent 49125 28a6178a07a2
child 49147 10b9f11daf15
--- a/rust/hg-core/src/dirstate_tree/on_disk.rs	Tue Apr 12 17:25:38 2022 +0200
+++ b/rust/hg-core/src/dirstate_tree/on_disk.rs	Tue Apr 12 17:26:23 2022 +0200
@@ -587,7 +587,7 @@
     ) -> Result<(), DirstateV2ParseError> {
         for node in read_nodes(on_disk, nodes)? {
             if let Some(entry) = node.entry()? {
-                if entry.state().is_tracked() {
+                if entry.tracked() {
                     f(node.full_path(on_disk)?)
                 }
             }