cleanup
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2024-12-22 11:15:46 -06:00
parent 57d583d6b5
commit 9489609b61
2 changed files with 0 additions and 6 deletions

View File

@ -92,8 +92,6 @@ public:
return api_error::not_supported;
}
void set_api_path(const std::string &api_path) override;
[[nodiscard]] auto write(std::uint64_t, const data_buffer &,
std::size_t &) -> api_error override {
return api_error::not_supported;

View File

@ -56,8 +56,4 @@ auto direct_open_file::read(std::size_t read_size, std::uint64_t read_offset,
return res;
}
void direct_open_file::set_api_path(const std::string &api_path) {
open_file_base::set_api_path(api_path);
}
} // namespace repertory