summaryrefslogtreecommitdiff
path: root/src/other_tools/just_mr
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2025-02-27 12:06:14 +0100
committerMaksim Denisov <denisov.maksim@huawei.com>2025-02-28 13:44:06 +0100
commit43ef3b3c953be338d8820e457f956bb96cd4f44d (patch)
treee44a2283bd3419ddf92194e2b91ca511dfec7121 /src/other_tools/just_mr
parent44fd3fdabe70aa0961b7b0114248a5d9ac633f71 (diff)
downloadjustbuild-43ef3b3c953be338d8820e457f956bb96cd4f44d.tar.gz
TreeIdGitMap: Remove unused parameters
Diffstat (limited to 'src/other_tools/just_mr')
-rw-r--r--src/other_tools/just_mr/setup.cpp21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/other_tools/just_mr/setup.cpp b/src/other_tools/just_mr/setup.cpp
index b4b31f71..5fb8dfed 100644
--- a/src/other_tools/just_mr/setup.cpp
+++ b/src/other_tools/just_mr/setup.cpp
@@ -392,17 +392,16 @@ auto MultiRepoSetup(std::shared_ptr<Configuration> const& config,
has_remote_api ? &*apis.remote : nullptr,
common_args.jobs);
- auto tree_id_git_map = CreateTreeIdGitMap(
- &git_tree_fetch_map,
- &critical_git_op_map,
- &import_to_git_map,
- common_args.fetch_absent,
- serve ? &*serve : nullptr,
- &native_storage_config,
- compat_storage_config != nullptr ? &*compat_storage_config : nullptr,
- &(*apis.local),
- has_remote_api ? &*apis.remote : nullptr,
- common_args.jobs);
+ auto tree_id_git_map =
+ CreateTreeIdGitMap(&git_tree_fetch_map,
+ &critical_git_op_map,
+ &import_to_git_map,
+ common_args.fetch_absent,
+ serve ? &*serve : nullptr,
+ &native_storage_config,
+ &(*apis.local),
+ has_remote_api ? &*apis.remote : nullptr,
+ common_args.jobs);
auto repos_to_setup_map = CreateReposToSetupMap(config,
main,