diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-05-21 16:21:29 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-05-23 15:03:41 +0200 |
commit | af9a4c74e28d188e610f345065a9c78bb81ba9b2 (patch) | |
tree | 9d50a9154a29f2dfc798921e140f2d6870a97e28 /src/buildtool/execution_api/remote/bazel/bazel_api.hpp | |
parent | cc24ac99155345e61fa8d08de91be13bb31b5f6f (diff) | |
download | justbuild-af9a4c74e28d188e610f345065a9c78bb81ba9b2.tar.gz |
Execution APIs: Extract common implementation into separate library
This reduces the code duplication between the local and bazel APIs
and improves code maintainability.
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel/bazel_api.hpp')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_api.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_api.hpp b/src/buildtool/execution_api/remote/bazel/bazel_api.hpp index adb6bd33..3411b6b7 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_api.hpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_api.hpp @@ -111,9 +111,6 @@ class BazelApi final : public IExecutionApi { private: std::shared_ptr<BazelNetwork> network_; - - [[nodiscard]] auto UploadBlobTree(BlobTreePtr const& blob_tree) noexcept - -> bool; }; #endif // INCLUDED_SRC_BUILDTOOL_EXECUTION_API_REMOTE_BAZEL_BAZEL_API_HPP |