diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-10 13:43:47 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-10 15:19:10 +0100 |
commit | 9f270cf4acc3c2b1db4ae76cfc34a162b19f3d1e (patch) | |
tree | 7f5bcdf92e0a8f024a46a302e4fc3fc7041ad168 /src/other_tools | |
parent | d7c7096bce17d810a4534164bf39159a401f5a0d (diff) | |
download | justbuild-9f270cf4acc3c2b1db4ae76cfc34a162b19f3d1e.tar.gz |
content_git_map: remove unused parameters
Diffstat (limited to 'src/other_tools')
-rw-r--r-- | src/other_tools/just_mr/setup.cpp | 2 | ||||
-rw-r--r-- | src/other_tools/root_maps/TARGETS | 1 | ||||
-rw-r--r-- | src/other_tools/root_maps/content_git_map.cpp | 6 | ||||
-rw-r--r-- | src/other_tools/root_maps/content_git_map.hpp | 3 |
4 files changed, 0 insertions, 12 deletions
diff --git a/src/other_tools/just_mr/setup.cpp b/src/other_tools/just_mr/setup.cpp index 7626564f..e382ddbc 100644 --- a/src/other_tools/just_mr/setup.cpp +++ b/src/other_tools/just_mr/setup.cpp @@ -350,8 +350,6 @@ auto MultiRepoSetup(std::shared_ptr<Configuration> const& config, auto content_git_map = CreateContentGitMap(&content_cas_map, &import_to_git_map, common_args.just_mr_paths, - common_args.alternative_mirrors, - common_args.ca_info, &resolve_symlinks_map, &critical_git_op_map, serve ? &*serve : nullptr, diff --git a/src/other_tools/root_maps/TARGETS b/src/other_tools/root_maps/TARGETS index ab3b1b8e..9125cb4b 100644 --- a/src/other_tools/root_maps/TARGETS +++ b/src/other_tools/root_maps/TARGETS @@ -124,7 +124,6 @@ , ["src/buildtool/serve_api/remote", "serve_api"] , ["src/buildtool/storage", "config"] , ["src/buildtool/storage", "storage"] - , ["src/other_tools/just_mr", "mirrors"] , ["src/other_tools/just_mr/progress_reporting", "progress"] , ["src/other_tools/ops_maps", "content_cas_map"] , ["src/other_tools/ops_maps", "critical_git_op_map"] diff --git a/src/other_tools/root_maps/content_git_map.cpp b/src/other_tools/root_maps/content_git_map.cpp index 2e112927..b7e220b8 100644 --- a/src/other_tools/root_maps/content_git_map.cpp +++ b/src/other_tools/root_maps/content_git_map.cpp @@ -851,8 +851,6 @@ auto CreateContentGitMap( gsl::not_null<ContentCASMap*> const& content_cas_map, gsl::not_null<ImportToGitMap*> const& import_to_git_map, LocalPathsPtr const& just_mr_paths, - MirrorsPtr const& additional_mirrors, - CAInfoPtr const& ca_info, gsl::not_null<ResolveSymlinksMap*> const& resolve_symlinks_map, gsl::not_null<CriticalGitOpMap*> const& critical_git_op_map, ServeApi const* serve, @@ -866,8 +864,6 @@ auto CreateContentGitMap( resolve_symlinks_map, critical_git_op_map, just_mr_paths, - additional_mirrors, - ca_info, serve, native_storage_config, native_storage, @@ -985,8 +981,6 @@ auto CreateContentGitMap( import_to_git_map, resolve_symlinks_map, just_mr_paths, - additional_mirrors, - ca_info, serve, native_storage_config, native_storage, diff --git a/src/other_tools/root_maps/content_git_map.hpp b/src/other_tools/root_maps/content_git_map.hpp index 091759d9..60b212ab 100644 --- a/src/other_tools/root_maps/content_git_map.hpp +++ b/src/other_tools/root_maps/content_git_map.hpp @@ -26,7 +26,6 @@ #include "src/buildtool/serve_api/remote/serve_api.hpp" #include "src/buildtool/storage/config.hpp" #include "src/buildtool/storage/storage.hpp" -#include "src/other_tools/just_mr/mirrors.hpp" #include "src/other_tools/just_mr/progress_reporting/progress.hpp" #include "src/other_tools/ops_maps/content_cas_map.hpp" #include "src/other_tools/ops_maps/critical_git_op_map.hpp" @@ -42,8 +41,6 @@ using ContentGitMap = gsl::not_null<ContentCASMap*> const& content_cas_map, gsl::not_null<ImportToGitMap*> const& import_to_git_map, LocalPathsPtr const& just_mr_paths, - MirrorsPtr const& additional_mirrors, - CAInfoPtr const& ca_info, gsl::not_null<ResolveSymlinksMap*> const& resolve_symlinks_map, gsl::not_null<CriticalGitOpMap*> const& critical_git_op_map, ServeApi const* serve, |