rust-clippy: factor an `if` with the same duplicated clause
authorRaphaël Gomès <rgomes@octobus.net>
Mon, 09 Jan 2023 18:03:24 +0100
changeset 49917 4c71c215bcfe
parent 49916 321e2b7bc95c
child 49918 4158608f7786
rust-clippy: factor an `if` with the same duplicated clause Unlike the next changeset, this if is not really made clearer by keeping the cases separate.
rust/hg-core/src/revlog/revlog.rs
--- a/rust/hg-core/src/revlog/revlog.rs	Mon Jan 09 18:00:56 2023 +0100
+++ b/rust/hg-core/src/revlog/revlog.rs	Mon Jan 09 18:03:24 2023 +0100
@@ -111,9 +111,7 @@
                 Some(Box::new(data_mmap))
             };
 
-        let nodemap = if index.is_inline() {
-            None
-        } else if !use_nodemap {
+        let nodemap = if index.is_inline() || !use_nodemap {
             None
         } else {
             NodeMapDocket::read_from_file(store_vfs, index_path)?.map(